fix: config #24
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: Auto PR to infos folder | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source repository | |
uses: actions/checkout@v4 | |
with: | |
path: source-repo | |
- name: Get filename from info.json | |
id: get-filename | |
run: | | |
cd source-repo | |
BASE_NAME=$(jq -r '.name' info.json) | |
FILENAME="${BASE_NAME}.json" | |
echo "filename=$FILENAME" >> $GITHUB_OUTPUT | |
echo "branch_name=update-file-$(date +%s)" >> $GITHUB_OUTPUT | |
cp info.json ../target.json | |
- name: Checkout target repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ExpTechTW/TREM-Plugins | |
token: ${{ secrets.PAT_TOKEN }} | |
path: target-repo | |
- name: Copy and commit file | |
run: | | |
mkdir -p target-repo/infos | |
mv target.json "target-repo/infos/${{ steps.get-filename.outputs.filename }}" | |
cd target-repo | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
BRANCH_NAME="${{ steps.get-filename.outputs.branch_name }}" | |
git checkout -b $BRANCH_NAME | |
git add infos | |
if ! git diff --cached --quiet; then | |
git commit -m "Update ${{ steps.get-filename.outputs.filename }}" | |
git push origin $BRANCH_NAME | |
else | |
echo "No changes to commit." | |
exit 0 | |
fi | |
- name: Create Pull Request | |
if: success() | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
run: | | |
pr_url=$(gh pr create \ | |
--repo ExpTechTW/TREM-Plugins \ | |
--base main \ | |
--head ${{ steps.get-filename.outputs.branch_name }} \ | |
--title "Update ${{ steps.get-filename.outputs.filename }}" \ | |
--body "Automated update from plugin repository" \ | |
--label "auto-merge") | |
echo "Created PR: $pr_url" |