actions-test/.github/workflows/merge.yml
2024-08-01 11:55:13 +10:00

32 lines
1 KiB
YAML

on:
pull_request:
types:
- closed
jobs:
release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
outputs:
tagname: ${{ steps.describe.outputs.tagname }}
steps:
- uses: actions/checkout@v4
with:
ref: refs/heads/main
token: ${{ secrets.GITHUB_TOKEN }}
fetch-tags: true
# fetch-depth: 0
# - name: stinky but
# run: git sparse-checkout disable; git checkout origin/main
- name: status
run: git status
- name: deepen tree
run: git fetch --shallow-since 2023-08-17 --tags --recurse-submodules=no
- name: status
run: git status
# - name: peepee poopoo
# run: git checkout --progress --force -B main refs/remotes/origin/main
- name: Get git describe for prerelease
id: describe
run: echo "tagname=pre-$(git describe --tags main)" >> $GITHUB_OUTPUT
- name: show describe
run: echo ${{ steps.describe.outputs.tagname }}