mirror of
https://github.com/ipfs/awesome-ipfs.git
synced 2024-11-20 11:28:35 -05:00
feat: ensure broken_link_cron.yml opens PR (#434)
* test: add invalid entry to data/apps.yaml * debug: git-auto-commit-action should run since there are modified files * fix: output variable name * fix: workflow permissions * debugging * debugging more * debugging more * debugging even more * fix: remove pull action for add-and-commit * fix: use ipfs-gui-bot token permissions * chore: Remove broken links (#435) Co-authored-by: ipfs-gui-bot <108953096+ipfs-gui-bot@users.noreply.github.com> * chore: cleanup Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ipfs-gui-bot <108953096+ipfs-gui-bot@users.noreply.github.com>
This commit is contained in:
parent
dd28c19ba7
commit
2f2d2236a2
1 changed files with 29 additions and 31 deletions
60
.github/workflows/broken_link_cron.yml
vendored
60
.github/workflows/broken_link_cron.yml
vendored
|
@ -5,15 +5,20 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-for-broken-links:
|
check-for-broken-links:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.REMOVE_BROKEN_LINKS_GH_TOKEN }}
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
@ -32,7 +37,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
ruby-version: 3.1.2
|
ruby-version: 3.1.2
|
||||||
|
|
||||||
|
# Cache the files created by awesome_bot
|
||||||
|
- name: Cache awesome_bot files
|
||||||
|
uses: actions/cache@v3
|
||||||
|
id: awesome_bot_cache
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
ab-results-README.md-filtered.json
|
||||||
|
ab-results-README.md-markdown-table.json
|
||||||
|
ab-results-README.md.json
|
||||||
|
key: ${{ runner.os }}-awesome_bot-${{ hashFiles('README.md') }}
|
||||||
|
|
||||||
- name: Install and run awesome_bot
|
- name: Install and run awesome_bot
|
||||||
|
if: steps.awesome_bot_cache.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
gem install awesome_bot
|
gem install awesome_bot
|
||||||
awesome_bot --allow 429 --allow-redirect --allow-dupe --allow-ssl -w ipfs.io README.md || echo
|
awesome_bot --allow 429 --allow-redirect --allow-dupe --allow-ssl -w ipfs.io README.md || echo
|
||||||
|
@ -45,42 +62,23 @@ jobs:
|
||||||
git ls-files -m
|
git ls-files -m
|
||||||
changed_data_files_count=$(git ls-files -m data | wc -l | tr -d ' ')
|
changed_data_files_count=$(git ls-files -m data | wc -l | tr -d ' ')
|
||||||
echo "changed_data_files_count='$changed_data_files_count'"
|
echo "changed_data_files_count='$changed_data_files_count'"
|
||||||
echo "::set-output name=changed_files::$changed_data_files_count"
|
echo "::set-output name=changed_data_files_count::$changed_data_files_count"
|
||||||
|
|
||||||
- uses: stefanzweifel/git-auto-commit-action@49620cd3ed21ee620a48530e81dba0d139c9cb80
|
- uses: EndBug/add-and-commit@d4d066316a2a85974a05efb42be78f897793c6d9 # v9.1.0 - https://github.com/EndBug/add-and-commit/commit/d4d066316a2a85974a05efb42be78f897793c6d9
|
||||||
if: steps.remove-broken-links.outputs.changed_data_files_count > 0
|
if: steps.remove-broken-links.outputs.changed_data_files_count != 0
|
||||||
with:
|
with:
|
||||||
# Optional. Commit message for the created commit.
|
add: 'data'
|
||||||
# Defaults to "Apply automatic changes"
|
new_branch: remove-broken-links
|
||||||
commit_message: "chore: Remove broken links"
|
message: 'chore: Remove broken links'
|
||||||
|
push: 'origin remove-broken-links --set-upstream --force'
|
||||||
# Optional. Local and remote branch name where commit is going to be pushed
|
author_name: 'ipfs-gui-bot'
|
||||||
# to. Defaults to the current branch.
|
author_email: '108953096+ipfs-gui-bot@users.noreply.github.com'
|
||||||
# You might need to set `create_branch: true` if the branch does not exist.
|
|
||||||
branch: remove-broken-links-${{ github.run_id }}
|
|
||||||
|
|
||||||
commit_options: '--no-verify --signoff'
|
|
||||||
|
|
||||||
# Optional glob pattern of files which should be added to the commit
|
|
||||||
# Defaults to all (.)
|
|
||||||
# See the `pathspec`-documentation for git
|
|
||||||
# - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203
|
|
||||||
# - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec
|
|
||||||
file_pattern: data/*
|
|
||||||
repository: .
|
|
||||||
add_options: '-A'
|
|
||||||
push_options: '--force'
|
|
||||||
skip_dirty_check: true
|
|
||||||
skip_fetch: true
|
|
||||||
skip_checkout: true
|
|
||||||
disable_globbing: true
|
|
||||||
create_branch: true
|
|
||||||
|
|
||||||
- name: pull-request
|
- name: pull-request
|
||||||
if: steps.remove-broken-links.outputs.changed_data_files_count > 0
|
if: steps.remove-broken-links.outputs.changed_data_files_count != 0
|
||||||
uses: repo-sync/pull-request@65785d95a5a466e46a9d0708933a3bd51bbf9dde
|
uses: repo-sync/pull-request@65785d95a5a466e46a9d0708933a3bd51bbf9dde
|
||||||
with:
|
with:
|
||||||
source_branch: "remove-broken-links-${{ github.run_id }}"
|
source_branch: "remove-broken-links"
|
||||||
destination_branch: "master"
|
destination_branch: "master"
|
||||||
pr_title: "chore: Remove broken links"
|
pr_title: "chore: Remove broken links"
|
||||||
pr_body: "Automated PR created by .github/workflows/broken_link_cron.yml"
|
pr_body: "Automated PR created by .github/workflows/broken_link_cron.yml"
|
||||||
|
|
Loading…
Reference in a new issue