Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Auto-Release
name: Release-GHRepository

run-name: "Auto-Release - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
run-name: "Release-GHRepository - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on:
pull_request:
Expand All @@ -22,15 +22,15 @@ permissions:
pull-requests: write

jobs:
Auto-Release:
Release-GHRepository:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Auto-Release
- name: Release-GHRepository
uses: ./
with:
IncrementalPrerelease: false
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Auto-Release
# Release-GHRepository

Automatically creates releases based on pull requests and labels.


## Specifications and practices

Auto-Release follows:
Release-GHRepository follows:

- [SemVer 2.0.0 specifications](https://semver.org)
- [GitHub Flow specifications](https://docs.github.com/en/get-started/using-github/github-flow)
Expand Down Expand Up @@ -80,7 +80,7 @@ This example uses the date format for the prerelease, disables the incremental p
Add a workflow in you repository using the following example:

```yaml
name: Auto-Release
name: Release-GHRepository

on:
pull_request_target:
Expand All @@ -97,14 +97,14 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
Auto-Release:
Release-GHRepository:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Auto-Release
uses: PSModule/Auto-Release@v1
- name: Release-GHRepository
uses: PSModule/Release-GHRepository@v1
```

## Permissions
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Auto Release (by PSModule)
name: Release GHRepository (by PSModule)
description: Automatically creates releases based on pull requests and labels.
author: PSModule
branding:
Expand Down Expand Up @@ -93,7 +93,7 @@ inputs:
runs:
using: composite
steps:
- name: Auto-Release
- name: Release-GHRepository
uses: PSModule/GitHub-Script@e827bea46d70eebc668bdd59e4654e0846177da4 # v1.7.9
env:
PSMODULE_AUTO_RELEASE_INPUT_AutoCleanup: ${{ inputs.AutoCleanup }}
Expand All @@ -117,8 +117,8 @@ runs:
Prerelease: ${{ inputs.Prerelease }}
Verbose: ${{ inputs.Verbose }}
Version: ${{ inputs.Version }}
Name: Auto-Release
Name: Release-GHRepository
WorkingDirectory: ${{ inputs.WorkingDirectory }}
Script: |
# Auto-Release
# Release-GHRepository
${{ github.action_path }}/scripts/main.ps1
Loading