Update _update.yml

This commit is contained in:
Aleksandr Statciuk 2022-10-26 23:35:01 +03:00
parent 9b97ba31c7
commit c1a66bc85d

View file

@ -8,8 +8,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with:
fetch-depth: 0
- run: echo "BRANCH_NAME=$(date +'bot/auto-update-%s')" >> $GITHUB_OUTPUT - run: echo "BRANCH_NAME=$(date +'bot/auto-update-%s')" >> $GITHUB_OUTPUT
id: create-branch-name id: create-branch-name
- run: git config user.name 'iptv-bot[bot]' - run: git config user.name 'iptv-bot[bot]'
@ -36,7 +34,7 @@ jobs:
with: with:
branch: gh-pages branch: gh-pages
folder: .gh-pages folder: .gh-pages
token: ${{ steps.create-deploy-token.outputs.token }} token: ${{ steps.create-app-token.outputs.token }}
git-config-name: iptv-bot[bot] git-config-name: iptv-bot[bot]
git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com
commit-message: '[Bot] Update guides' commit-message: '[Bot] Update guides'
@ -60,14 +58,12 @@ jobs:
git add README.md git add README.md
git commit -m "[Bot] Update README.md" git commit -m "[Bot] Update README.md"
git status git status
git push -u origin ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
- run: npm run status:update - run: npm run status:update
- if: ${{ !env.ACT }} - if: ${{ !env.ACT }}
run: | run: |
git add STATUS.md git add STATUS.md
git commit -m "[Bot] Update STATUS.md" git commit -m "[Bot] Update STATUS.md"
git status git status
git push -u origin ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
- uses: repo-sync/pull-request@v2 - uses: repo-sync/pull-request@v2
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
id: pull-request id: pull-request