api: Fix resetting a query title #223
Workflow file for this run
This file contains hidden or 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: | |
| jobs: | |
| update-container-tags: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - name: update values.yaml | |
| run: | | |
| for i in web worker ; do | |
| sed -i "s/tag: .* # ${i} tag managed by github actions$/tag: pr-${{ github.event.number }} # ${i} tag managed by github actions/" helm-quarry/values.yaml | |
| done | |
| - uses: EndBug/add-and-commit@v9 | |
| with: | |
| add: 'helm-quarry/values.yaml' | |
| author_name: Github Action | |
| author_email: auto@github.com | |
| message: 'auto update of tag' |