Merge pull request #3730 from SillyTavern/feat/command-buttons-multiple #1
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 Issues on Push | |
on: | |
push: | |
branches: | |
- staging | |
- release | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
# This runs commits to staging/release, reading the commit messages. Check `pr-auto-manager.yml`:`update-linked-issues` for PR-linked updates. | |
update-linked-issues: | |
name: π Mark Linked Issues Done on Push | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
# Checkout | |
# https://github.com/marketplace/actions/checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Extract Linked Issues from Commit Message | |
id: extract_issues | |
run: | | |
ISSUES=$(git log ${{ github.event.before }}..${{ github.event.after }} --pretty=%B | grep -oiE '(close|closes|closed|fix|fixes|fixed|resolve|resolves|resolved) #([0-9]+)' | awk '{print $2}' | tr -d '#' | jq -R -s -c 'split("\n")[:-1]') | |
echo "issues=$ISSUES" >> $GITHUB_ENV | |
- name: Label Linked Issues | |
id: label_linked_issues | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
for ISSUE in $(echo $issues | jq -r '.[]'); do | |
if [ "${{ github.ref }}" == "refs/heads/staging" ]; then | |
LABEL="β Done (staging)" | |
gh issue edit $ISSUE -R ${{ github.repository }} --add-label "$LABEL" | |
elif [ "${{ github.ref }}" == "refs/heads/release" ]; then | |
LABEL="β Done" | |
gh issue edit $ISSUE -R ${{ github.repository }} --add-label "$LABEL" | |
fi | |
echo "Added label '$LABEL' to issue #$ISSUE" | |
done |