-
Notifications
You must be signed in to change notification settings - Fork 3
update dev #158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
update dev #158
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4e24bbd
update workflows (#150)
marc-romu dfba4d0
update workflows (#153)
marc-romu 396b1f0
ci(workflow): user-update-branc add support to multiple targets and P…
marc-romu c466be3
ci(workflows): fix update-branch
marc-romu af6b2ab
ci(workflow): also create PR on fail
marc-romu 8729327
ci(workflow): added new workflow to delete automatically created bran…
marc-romu 629bd32
Marc romu/workflows (#155)
marc-romu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| name: pr-delete-auto-branches | ||
|
|
||
| # Description: Deletes auto-generated branches when a pull request is closed (merged or not) if the branch name matches predefined patterns. | ||
| # | ||
| # This workflow triggers on pull_request closed events and deletes the head branch when it matches any of: | ||
| # - update-branch/* | ||
| # - chore/update-dev-version-date-* | ||
| # - docs/update-version-badge-* | ||
| # | ||
| # Triggers: | ||
| # - pull_request.types: closed | ||
| # | ||
| # Permissions: | ||
| # - contents: write - Required to delete branches | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: | ||
| - closed | ||
| permissions: | ||
| contents: write | ||
| jobs: | ||
| delete-auto-branches: | ||
| name: Delete auto branches | ||
| if: | | ||
| startsWith(github.event.pull_request.head.ref, 'update-branch/') || | ||
| startsWith(github.event.pull_request.head.ref, 'chore/update-dev-version-date-') || | ||
| startsWith(github.event.pull_request.head.ref, 'docs/update-version-badge-') | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Delete branch | ||
| uses: breningham/delete-branch@v1.0.0 | ||
| with: | ||
| branch_name: ${{ github.event.pull_request.head.ref }} | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Including 'merge_status' equal to 'success' in the condition for creating a PR could lead to unnecessary PRs when a merge successfully occurs. Consider removing this case so that a PR is created only when the merge fails or there is a conflict.