We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46559ed + 492f426 commit f490592Copy full SHA for f490592
.github/workflows/integration.yml
@@ -1,6 +1,9 @@
1
name: Integration Tests 🧪
2
on:
3
workflow_call:
4
+ secrets:
5
+ PAT:
6
+ required: true
7
workflow_dispatch:
8
schedule:
9
- cron: 30 15 * * 0-6
.github/workflows/version.yml
@@ -15,8 +15,9 @@ jobs:
15
call-integration-workflow:
16
name: Verify Major Tag 🚀
17
needs: update-majorver
18
- secrets: inherit
19
uses: ./.github/workflows/integration.yml
20
+ PAT: ${{ secrets.PAT }}
21
22
update-registries:
23
needs: call-integration-workflow
0 commit comments