We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 139d41a commit d71f488Copy full SHA for d71f488
.github/workflows/boom-tag.yaml
@@ -0,0 +1,28 @@
1
+name: Boom Tag
2
+
3
+on:
4
+ pull_request:
5
+ branches: [develop, main]
6
+ workflow_dispatch:
7
8
9
+jobs:
10
+ remove-docker-tag:
11
+ runs-on: ubuntu-latest
12
13
+ # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
14
+ # (required)
15
+ permissions:
16
+ contents: read
17
+ packages: write
18
19
+ steps:
20
+ - name: Prune
21
+ uses: vlaurin/action-ghcr-prune@v0.6.0
22
+ with:
23
+ token: ${{ secrets.GITHUB_TOKEN }}
24
+ organization: bcgov
25
+ container: cas-airflow-dag-trigger
26
+ dry-run: true # Dry-run first, then change to `false`
27
+ prune-tags-regexes: |
28
+ ^1.2.2
0 commit comments