-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfce756
commit 0d2d36c
Showing
6 changed files
with
38 additions
and
123 deletions.
There are no files selected for viewing
This file contains 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
4 changes: 2 additions & 2 deletions
4
.../workflows/master-pull-request-checks.yml → .github/workflows/check-release-pr.yml
This file contains 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
This file contains 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,15 @@ | ||
name: Generate Release | ||
on: | ||
workflow_run: | ||
workflows: Build Project | ||
types: completed | ||
branches: master | ||
|
||
jobs: | ||
generate_release: | ||
name: Generate Release | ||
if: github.event.workflow_run.conclusion == 'success' | ||
uses: oblivioncth/actions/.github/workflows/generate-cxx-release.yml@feature/upgrades | ||
with: | ||
artifacts_run_id: ${{ github.event.workflow_run.id }} | ||
|
2 changes: 1 addition & 1 deletion
2
.github/workflows/pull-request-labeler.yml → .github/workflows/label-pr.yml
This file contains 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Pull-request auto-labeler | ||
name: Label PR When Opened | ||
on: | ||
pull_request: | ||
types: [opened] | ||
|
117 changes: 0 additions & 117 deletions
117
.github/workflows/master-pull-request-merge-reaction.yml
This file was deleted.
Oops, something went wrong.
This file contains 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,12 @@ | ||
name: Tag and Sync | ||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
tag_master_and_sync_dev: | ||
name: Tag master merge commit, FF back to dev | ||
if: github.event.pull_request.merged == true | ||
uses: oblivioncth/actions/.github/workflows/tag-main-and-sync-dev.yml@feature/upgrades |