@@ -15,17 +15,20 @@ jobs:
1515 getVersion :
1616 permissions :
1717 contents : read
18+ pull-requests : write
1819 # Don't run the cron builds on forks
1920 if : github.event_name != 'schedule' || github.repository_owner == 'aws'
2021 uses : ./.github/workflows/dafny_version.yml
2122 getVerifyVersion :
2223 permissions :
2324 contents : read
25+ pull-requests : write
2426 if : github.event_name != 'schedule' || github.repository_owner == 'aws'
2527 uses : ./.github/workflows/dafny_verify_version.yml
2628 daily-ci-format :
2729 permissions :
2830 contents : read
31+ pull-requests : write
2932 needs : getVersion
3033 if : github.event_name != 'schedule' || github.repository_owner == 'aws'
3134 uses : ./.github/workflows/library_format.yml
3437 daily-ci-codegen :
3538 permissions :
3639 contents : read
40+ pull-requests : write
3741 needs : getVersion
3842 if : github.event_name != 'schedule' || github.repository_owner == 'aws'
3943 uses : ./.github/workflows/ci_codegen.yml
4246 daily-ci-verification :
4347 permissions :
4448 contents : read
49+ pull-requests : write
4550 needs : getVerifyVersion
4651 if : github.event_name != 'schedule' || github.repository_owner == 'aws'
4752 uses : ./.github/workflows/library_dafny_verification.yml
@@ -50,62 +55,71 @@ jobs:
5055 daily-ci-test-vector-verification :
5156 permissions :
5257 contents : read
58+ pull-requests : write
5359 needs : getVerifyVersion
5460 uses : ./.github/workflows/test_vector_verification.yml
5561 with :
5662 dafny : ${{needs.getVerifyVersion.outputs.version}}
5763 daily-ci-java :
5864 permissions :
5965 contents : read
66+ pull-requests : write
6067 needs : getVersion
6168 uses : ./.github/workflows/ci_test_java.yml
6269 with :
6370 dafny : ${{needs.getVersion.outputs.version}}
6471 daily-ci-java-test-vectors :
6572 permissions :
6673 contents : read
74+ pull-requests : write
6775 needs : getVersion
6876 uses : ./.github/workflows/ci_test_vector_java.yml
6977 with :
7078 dafny : ${{needs.getVersion.outputs.version}}
7179 daily-ci-java-examples :
7280 permissions :
7381 contents : read
82+ pull-requests : write
7483 needs : getVersion
7584 uses : ./.github/workflows/ci_examples_java.yml
7685 with :
7786 dafny : ${{needs.getVersion.outputs.version}}
7887 daily-ci-net :
7988 permissions :
8089 contents : read
90+ pull-requests : write
8191 needs : getVersion
8292 uses : ./.github/workflows/ci_test_net.yml
8393 with :
8494 dafny : ${{needs.getVersion.outputs.version}}
8595 daily-ci-rust :
8696 permissions :
8797 contents : read
98+ pull-requests : write
8899 needs : getVersion
89100 uses : ./.github/workflows/library_rust_tests.yml
90101 with :
91102 dafny : ${{needs.getVersion.outputs.version}}
92103 daily-ci-net-test-vectors :
93104 permissions :
94105 contents : read
106+ pull-requests : write
95107 needs : getVersion
96108 uses : ./.github/workflows/ci_test_vector_net.yml
97109 with :
98110 dafny : ${{needs.getVersion.outputs.version}}
99111 daily-ci-net-examples :
100112 permissions :
101113 contents : read
114+ pull-requests : write
102115 needs : getVersion
103116 uses : ./.github/workflows/ci_examples_net.yml
104117 with :
105118 dafny : ${{needs.getVersion.outputs.version}}
106119 notify :
107120 permissions :
108121 contents : read
122+ pull-requests : write
109123 needs :
110124 [
111125 getVersion,
0 commit comments