Remedy warning in collections install #1287
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: update container tags | |
'on': | |
pull_request_target: | |
jobs: | |
update-container-tags: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: git fetch | |
run: | | |
git fetch | |
- name: git checkout | |
run: | | |
git checkout ${{ github.head_ref }} | |
# compare to upstream main branch | |
- name: git add remote | |
run: | | |
git remote add toolforgepaws https://github.com/toolforge/paws.git | |
- name: git remote update | |
run: | | |
git remote update | |
- name: update values.yaml | |
run: | | |
for i in renderer nbserve paws-hub jobber singleuser minesweeper ; do | |
if [[ $(git diff remotes/toolforgepaws/main -- images/${i}/) ]]; then | |
sed -i "s/tag: .* # ${i} tag managed by github actions$/tag: pr-${{ github.event.number }} # ${i} tag managed by github actions/" paws/values.yaml | |
fi | |
done | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
add: 'paws/values.yaml' | |
author_name: Github Action | |
author_email: [email protected] | |
branch: ${{ github.head_ref }} | |
message: 'auto update of ${{ inputs.imagename }} tag' | |
pull: --rebase --autostash |