File tree Expand file tree Collapse file tree
moduleroot/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 delete : true
1313.github/workflows/release_prep.yml :
1414 delete : true
15+ .github/workflows/prepare_release.yml :
16+ git_name : pccibot
17+ 18+ .github/workflows/create_tag.yml :
19+ git_name : pccibot
20+ 1521.github/workflows/nightly.yml :
1622 delete : true
1723.github/workflows/mend.yml :
Original file line number Diff line number Diff line change 1+ ---
2+ # Managed by modulesync - DO NOT EDIT
3+ # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+ name: Create Git tag
6+
7+ on:
8+ workflow_dispatch:
9+
10+ permissions: {}
11+
12+ jobs:
13+ create_tag:
14+ uses: 'voxpupuli/gha-puppet/.github/workflows/create_tag.yml@v4'
15+ with:
16+ allowed_owner: '<%= @configs[:namespace] %> '
17+ git_name: '<%= @configs['git_name'] %> '
18+ git_email: '<%= @configs['git_email'] %> '
19+ secrets:
20+ # Configure secrets here:
21+ # https://docs.github.com/en/actions/security-guides/encrypted-secrets
22+ ssh_private_key: ${{ secrets.PCCI_SSH_PRIVATE_KEY }}
Original file line number Diff line number Diff line change 2323<%- unless @configs['with']&.has_key?('allowed_owner') -%>
2424 allowed_owner: '<%= @configs['allowed_owner'] || @configs[:namespace] %> '
2525<%- end -%>
26+ git_name: '<%= @configs['git_name'] %> '
27+ git_email: '<%= @configs['git_email'] %> '
2628 secrets:
2729 # Configure secrets here:
2830 # https://docs.github.com/en/actions/security-guides/encrypted-secrets
2931 github_pat: '${{ secrets.PCCI_PAT_RELEASE_PREP }}'
32+ ssh_private_key: '${{ secrets.PCCI_SSH_PRIVATE_KEY }}'
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ name: Release
88on:
99 push:
1010 tags:
11- - '*'
11+ # https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#onpushbranchestagsbranches-ignoretags-ignore
12+ # https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#filter-pattern-cheat-sheet
13+ - 'v[0-9]+.[0-9]+.[0-9]+'
1214
1315permissions:
1416 contents: write
You can’t perform that action at this time.
0 commit comments