Skip to content

Commit

Permalink
Merge pull request #139 from oblivioncth/dev
Browse files Browse the repository at this point in the history
Merge to master for v0.5.8
  • Loading branch information
oblivioncth authored Oct 2, 2024
2 parents 3ab1411 + 2032e82 commit 583fd74
Show file tree
Hide file tree
Showing 49 changed files with 1,010 additions and 3,772 deletions.
8 changes: 7 additions & 1 deletion .github/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
changelog:
exclude:
labels:
- release-pr
- release
- common-sync
authors:
- oby-bot
categories:
- title: Breaking Changes
labels:
Expand All @@ -12,6 +15,9 @@ changelog:
- title: Bug Fixes
labels:
- bug
- title: Implementation Improvements
labels:
- implementation
- title: Other Changes
labels:
- "*"
21 changes: 21 additions & 0 deletions .github/workflows/build-project.yml
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 }}
112 changes: 0 additions & 112 deletions .github/workflows/build-qx-linux.yml

This file was deleted.

82 changes: 0 additions & 82 deletions .github/workflows/build-qx-windows.yml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/check-release-pr.yml
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
19 changes: 19 additions & 0 deletions .github/workflows/generate-release.yml
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 }}
12 changes: 12 additions & 0 deletions .github/workflows/label-pr.yml
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
13 changes: 0 additions & 13 deletions .github/workflows/master-pull-request-checks.yml

This file was deleted.

Loading

0 comments on commit 583fd74

Please sign in to comment.