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
2 changes: 1 addition & 1 deletion .github/workflows/merge-bot-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

merge-bot:
name: Merge bot pull request job
uses: ptr727/ProjectTemplate/.github/workflows/merge-bot-task.yml@d6a4d7e1cc0f5ed8477e01cebe717b7ae3fabd58 # 2.0.560
uses: ptr727/ProjectTemplate/.github/workflows/merge-bot-task.yml@f8e7491d9c4bedc18b279a1d8b323ce9fde5ccb1 # 2.0.577
secrets:
CODEGEN_APP_CLIENT_ID: ${{ secrets.CODEGEN_APP_CLIENT_ID }}
CODEGEN_APP_PRIVATE_KEY: ${{ secrets.CODEGEN_APP_PRIVATE_KEY }}
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Single source of the release-gate decision, publish or not and stable or not, reused by every job below.
plan:
name: Plan release job
uses: ptr727/ProjectTemplate/.github/workflows/publish-plan-task.yml@d6a4d7e1cc0f5ed8477e01cebe717b7ae3fabd58 # 2.0.560
uses: ptr727/ProjectTemplate/.github/workflows/publish-plan-task.yml@f8e7491d9c4bedc18b279a1d8b323ce9fde5ccb1 # 2.0.577
with:
event_name: ${{ github.event_name }}
actor: ${{ github.actor }}
Expand All @@ -42,7 +42,7 @@ jobs:
name: Validate job
needs: [plan]
if: ${{ needs.plan.outputs.publish == 'true' }}
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@d6a4d7e1cc0f5ed8477e01cebe717b7ae3fabd58 # 2.0.560
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@f8e7491d9c4bedc18b279a1d8b323ce9fde5ccb1 # 2.0.577
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
permissions:
Expand All @@ -57,7 +57,7 @@ jobs:
name: Publish project release job
needs: [plan, validate]
if: ${{ needs.plan.outputs.publish == 'true' && needs.validate.result == 'success' }}
uses: ptr727/ProjectTemplate/.github/workflows/build-release-task.yml@d6a4d7e1cc0f5ed8477e01cebe717b7ae3fabd58 # 2.0.560
uses: ptr727/ProjectTemplate/.github/workflows/build-release-task.yml@f8e7491d9c4bedc18b279a1d8b323ce9fde5ccb1 # 2.0.577
permissions:
contents: write
actions: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

validate:
name: Validate job
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@d6a4d7e1cc0f5ed8477e01cebe717b7ae3fabd58 # 2.0.560
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@f8e7491d9c4bedc18b279a1d8b323ce9fde5ccb1 # 2.0.577
permissions:
contents: read
secrets:
Expand All @@ -71,7 +71,7 @@ jobs:
name: Smoke build job
needs: [changes]
if: needs.changes.outputs.release == 'true' || github.event_name == 'workflow_dispatch'
uses: ptr727/ProjectTemplate/.github/workflows/build-release-task.yml@d6a4d7e1cc0f5ed8477e01cebe717b7ae3fabd58 # 2.0.560
uses: ptr727/ProjectTemplate/.github/workflows/build-release-task.yml@f8e7491d9c4bedc18b279a1d8b323ce9fde5ccb1 # 2.0.577
permissions:
contents: read
with:
Expand Down
Loading