Skip to content

Commit b8c2aae

Browse files
author
benjamin
committed
skip checking tags on PRs
1 parent 8387e0d commit b8c2aae

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/base-glibc-busybox-bash.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ jobs:
148148
done
149149
buildah rmi --prune || true
150150
151-
- name: Check Tags
151+
- if: ${{ github.ref == 'refs/heads/master' }}
152+
name: Check Tags
152153
run: |
153154
# Quay.io does not support immutable images.
154155
# => Check for duplicate tags to avoid overwriting existing images.

.github/workflows/base-glibc-debian-bash.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ jobs:
138138
done
139139
buildah rmi --prune || true
140140
141-
- name: Check Tags
141+
- if: ${{ github.ref == 'refs/heads/master' }}
142+
name: Check Tags
142143
run: |
143144
# Quay.io does not support immutable images.
144145
# => Check for duplicate tags to avoid overwriting existing images.

.github/workflows/bioconda-recipes-issue-responder.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
done
5353
buildah rmi --prune || true
5454
55-
- name: Check Tags
55+
- if: ${{ github.ref == 'refs/heads/master' }}
56+
name: Check Tags
5657
run: |
5758
# Quay.io does not support immutable images.
5859
# => Check for duplicate tags to avoid overwriting existing images.

.github/workflows/bot.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ jobs:
8787
done
8888
buildah rmi --prune || true
8989
90-
- name: Check Tags
90+
- if: ${{ github.ref == 'refs/heads/master' }}
91+
name: Check Tags
9192
run: |
9293
# Quay.io does not support immutable images.
9394
# => Check for duplicate tags to avoid overwriting existing images.

.github/workflows/create-env.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ jobs:
103103
done
104104
buildah rmi --prune || true
105105
106-
- name: Check Tags
106+
- if: ${{ github.ref == 'refs/heads/master' }}
107+
name: Check Tags
107108
run: |
108109
# Quay.io does not support immutable images.
109110
# => Check for duplicate tags to avoid overwriting existing images.

0 commit comments

Comments
 (0)