Skip to content

Commit

Permalink
Revert "remove: action"
Browse files Browse the repository at this point in the history
This reverts commit e3e9410.
  • Loading branch information
yayacat committed Dec 2, 2024
1 parent e3e9410 commit 3987f5c
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/auto-pr-info.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
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/eew-logger
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"

0 comments on commit 3987f5c

Please sign in to comment.