Skip to content

Commit 13b4697

Browse files
committed
(maint) Update github actions to account for 7.x branch
Puppet 6.x will be end of life on February 28, 2023 and Puppet 7.x will become the long term support (LTS) branch. In preparation for this, a new Puppet 7.x branch will be created and Puppet's GitHub Actions & protection rules must be updated. This PR updates Puppet's GitHub Actions to account for 7.x being the new LTS branch.
1 parent e95386b commit 13b4697

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Checks
33

44
on:
55
push:
6-
branches: [main]
6+
branches: [7.x]
77
pull_request:
8-
branches: [main]
8+
branches: [7.x]
99

1010
permissions:
1111
contents: read

.github/workflows/rspec_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: RSpec tests
33

44
on:
55
push:
6-
branches: [main]
6+
branches: [7.x]
77
pull_request:
8-
branches: [main]
8+
branches: [7.x]
99

1010
permissions:
1111
contents: read

.github/workflows/snyk_monitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Snyk Monitor
33
on:
44
push:
55
branches:
6-
- main
6+
- 7.x
77
permissions:
88
contents: read
99

0 commit comments

Comments
 (0)