-
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.
Merge pull request #139 from oblivioncth/dev
Merge to master for v0.5.8
- Loading branch information
Showing
49 changed files
with
1,010 additions
and
3,772 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
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,21 @@ | ||
name: Build Project | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches-ignore: | ||
- 'master' | ||
workflow_run: | ||
workflows: Tag and Sync | ||
types: completed | ||
branches: dev | ||
# This is the branch that the original workflow ran on, which is technically dev, due to how | ||
# the "pull_request" trigger works (it works off master correctly for a merged PR but is triggered | ||
# by dev | ||
|
||
jobs: | ||
trigger-build: | ||
name: Build Project | ||
if: github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' | ||
uses: oblivioncth/actions/.github/workflows/build-cxx-project.yml@v1 | ||
secrets: | ||
ffynnon_access: ${{ secrets.OBYBOT_FFYNNON_ACCESS }} |
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
name: Check Release PR | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
branches: master | ||
|
||
jobs: | ||
check-pr-correctness: | ||
name: Release PR Correctness Check | ||
uses: oblivioncth/actions/.github/workflows/validate-release-pr.yml@v1 |
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,19 @@ | ||
name: Generate Release | ||
on: | ||
workflow_run: | ||
workflows: Build Project | ||
types: completed | ||
branches: master | ||
|
||
jobs: | ||
generate-release: | ||
name: Generate Release | ||
permissions: | ||
actions: read | ||
contents: write | ||
pages: write | ||
id-token: write | ||
if: github.event.workflow_run.conclusion == 'success' | ||
uses: oblivioncth/actions/.github/workflows/generate-cxx-release.yml@v1 | ||
with: | ||
artifacts_run_id: ${{ github.event.workflow_run.id }} |
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: Label PR | ||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
label-pr: | ||
name: Label pull-request | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
uses: oblivioncth/actions/.github/workflows/label-pr.yml@v1 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.