File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change
1
+ quiet : true
2
+ skip-check :
3
+ - CKV_GHA_7
4
+ - CKV_DOCKER_2
5
+ - CKV_DOCKER_3
Original file line number Diff line number Diff line change
1
+ name : Update major tag for release
2
+ on :
3
+ release :
4
+ types : [released]
5
+ workflow_dispatch :
6
+ inputs :
7
+ TAG_NAME :
8
+ description : " Tag name that the major tag will point to (e.g. v1.2.3)"
9
+ required : true
10
+ env :
11
+ TAG_NAME : ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
12
+ permissions :
13
+ contents : read
14
+ jobs :
15
+ update_tag :
16
+ permissions :
17
+ contents : write
18
+ name : Update the major tag to include the ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} changes
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ - name : Update the ${{ env.TAG_NAME }} tag
22
+ uses : actions/publish-action@8a4b4f687b72f481b8a241ef71f38857239698fc
23
+ with :
24
+ source-tag : ${{ env.TAG_NAME }}
Original file line number Diff line number Diff line change 1
- # checkov:skip=CKV_DOCKER_2
2
- # checkov:skip=CKV_DOCKER_3
3
1
FROM python:3.13-slim@sha256:8f3aba466a471c0ab903dbd7cb979abd4bda370b04789d25440cc90372b50e04
4
2
LABEL com.github.actions.name="stale-repos" \
5
3
com.github.actions.description="Find stale repositories in a GitHub organization." \
You can’t perform that action at this time.
0 commit comments