Skip to content

bot: Bump gix-components #4013

bot: Bump gix-components

bot: Bump gix-components #4013

Workflow file for this run

# Tags the latest main, to trigger a release.
name: Tag main as tip
on:
pull_request:
branches:
- main
types:
- closed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tag_tip:
if: github.event.pull_request.merged
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Tag main as tip
run: |
git tag -f tip
git push origin tags/tip -f