chore: bump golang from fe69f48
to ca78a56
in /test/image
#23
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: create_tag | |
on: | |
pull_request: | |
types: [closed] | |
permissions: | |
contents: write | |
jobs: | |
create_tag: | |
name: "Create tag" | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release-pr') && startsWith(github.event.pull_request.title, format('chore{0} Prepare', ':')) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "Set release tag" | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github.event.pull_request.labels.*.name) }} | |
run: | | |
RELEASE_TAG=$(echo "$GITHUB_CONTEXT" | jq '.[1]' | tr -d '"') | |
echo "RELEASE_TAG=$RELEASE_TAG" >> $GITHUB_ENV | |
- name: Check out code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.5.2 | |
- uses: rickstaa/action-create-tag@a1c7777fcb2fee4f19b0f283ba888afa11678b72 #v1.7.2 | |
with: | |
tag: ${{ env.RELEASE_TAG }} | |
tag_exists_error: false |