Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/update-container-tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ name: update container tags
jobs:
update-container-tags:
runs-on: ubuntu-latest
env:
GITHUB_REF: ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -19,7 +21,7 @@ jobs:
git fetch
- name: git checkout
run: |
git checkout ${{ github.head_ref }}
git checkout "$GITHUB_REF"

# compare to upstream main branch
- name: git add remote
Expand All @@ -40,6 +42,6 @@ jobs:
add: 'helm-quarry/values.yaml'
author_name: Github Action
author_email: [email protected]
branch: ${{ github.head_ref }}
branch: ${{ env.GITHUB_REF }}
message: 'auto update of ${{ inputs.imagename }} tag'
pull: --rebase --autostash
4 changes: 2 additions & 2 deletions helm-quarry/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
web:
repository: 'quay.io/wikimedia-quarry/quarry'
tag: pr-54 # web tag managed by github actions
tag: pr-72 # web tag managed by github actions
resources:
requests:
memory: "300Mi"
Expand All @@ -11,7 +11,7 @@ web:

worker:
repository: 'quay.io/wikimedia-quarry/quarry'
tag: pr-54 # worker tag managed by github actions
tag: pr-72 # worker tag managed by github actions
resources:
requests:
memory: "400Mi"
Expand Down
Loading