File tree 8 files changed +49
-43
lines changed
8 files changed +49
-43
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ jobs:
12
12
steps :
13
13
- name : Generate token
14
14
id : generate_token
15
- uses : tibdex/github-app-token@v1.7 .0
15
+ uses : tibdex/github-app-token@v1.8 .0
16
16
with :
17
17
app_id : ${{ secrets.SYNOPS_APP_ID }}
18
18
private_key : ${{ secrets.SYNOPS_APP_PRIVATE_KEY }}
19
19
20
20
- name : Add to project
21
21
id : add_to_project
22
- uses : actions/add-to-project@v0.4 .0
22
+ uses : actions/add-to-project@v0.5 .0
23
23
with :
24
24
project-url : https://github.com/orgs/synapsestudios/projects/33
25
25
github-token : ${{ steps.generate_token.outputs.token }}
Original file line number Diff line number Diff line change
1
+ name : Cron Jobs
2
+ on :
3
+ schedule :
4
+ - cron : " 0 0 * * 6"
5
+ permissions :
6
+ actions : read
7
+ contents : read
8
+ security-events : write
9
+ jobs :
10
+ tfscan :
11
+ uses : synapsestudios/.github/.github/workflows/tf-scan.yml@master
Original file line number Diff line number Diff line change
1
+ name : Pull Request Jobs
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - " *"
6
+ - " */*"
7
+ - " **"
8
+ permissions :
9
+ actions : read
10
+ contents : write
11
+ pull-requests : write
12
+ security-events : write
13
+ jobs :
14
+ terraform-format-test :
15
+ uses : ./.github/workflows/terraform_format.yml
16
+ terraform-docs :
17
+ needs : [terraform-format-test]
18
+ uses : ./.github/workflows/tf-docs.yml
19
+ tfscan :
20
+ needs : [terraform-format-test, terraform-docs]
21
+ uses : synapsestudios/.github/.github/workflows/tf-scan.yml@master
Original file line number Diff line number Diff line change
1
+ name : Push Jobs
2
+ on :
3
+ push :
4
+ branches : [main]
5
+ permissions :
6
+ actions : read
7
+ contents : read
8
+ security-events : write
9
+ jobs :
10
+ tfscan :
11
+ uses : synapsestudios/.github/.github/workflows/tf-scan.yml@master
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- name : Checkout
12
- uses : actions/checkout@v2
12
+ uses : actions/checkout@v3
13
13
14
14
- name : test
15
15
run : pwd
16
16
17
17
- name : Setup Terraform
18
- uses : hashicorp/setup-terraform@v1
18
+ uses : hashicorp/setup-terraform@v2
19
19
with :
20
20
terraform_version : 1.3.7
21
21
Original file line number Diff line number Diff line change 1
- name : Generate terraform docs
1
+ name : Generate Terraform Documentation
2
2
on :
3
3
workflow_call :
4
4
11
11
ref : ${{ github.event.pull_request.head.ref }}
12
12
13
13
- name : Render terraform docs inside the README.md and push changes back to PR branch
14
- uses : terraform-docs/gh-actions@v1.0.0
14
+ uses : terraform-docs/gh-actions@main
15
15
with :
16
16
working-dir : .
17
17
output-file : README.md
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments