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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-site.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -40,7 +40,7 @@ jobs:
validate:
name: Validate sources job
needs: [ assert-ref ]
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
permissions:
contents: read
with:
Expand All@@ -57,7 +57,7 @@ jobs:
deploy:
name: Deploy site job
needs: [ validate ]
uses: ptr727/ProjectTemplate/.github/workflows/deploy-site-task.yml@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/deploy-site-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
with:
environment: ${{ inputs.environment }}
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-bot-pull-request.yml
Original file line numberDiff line numberDiff 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@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/merge-bot-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
secrets:
CODEGEN_APP_CLIENT_ID: ${{ secrets.CODEGEN_APP_CLIENT_ID }}
CODEGEN_APP_PRIVATE_KEY: ${{ secrets.CODEGEN_APP_PRIVATE_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,7 +17,7 @@ jobs:
# Also replaces this repo's own dispatch-ref assertion: the hub task errors identically on a ref other than main/develop.
plan:
name: Plan release job
uses: ptr727/ProjectTemplate/.github/workflows/publish-plan-task.yml@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/publish-plan-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
with:
event_name: ${{ github.event_name }}
actor: ${{ github.actor }}
Expand All@@ -31,7 +31,7 @@ jobs:
name: Validate sources job
needs: [plan]
if: ${{ needs.plan.outputs.publish == 'true' }}
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
permissions:
contents: read
with:
Expand All@@ -52,7 +52,7 @@ jobs:
name: Publish project release job
needs: [plan, validate]
if: ${{ needs.plan.outputs.publish == 'true' }}
uses: ptr727/ProjectTemplate/.github/workflows/build-release-task.yml@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/build-release-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
permissions:
contents: write
actions: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pull-request.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -19,7 +19,7 @@ jobs:

validate:
name: Validate sources job
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@fa63163f4400830a6d86d306a2f9b542ca1a5c4a # 2.0.465
uses: ptr727/ProjectTemplate/.github/workflows/validate-task.yml@a33d7d77ffa7f6af52cddce01f7250be282546ed # 2.0.483
permissions:
contents: read
with:
Expand Down