Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/update-external-docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Update External Docs
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 1'

- cron: '0 8 * * 1'

permissions:
pull-requests: write
Expand All @@ -11,20 +11,20 @@ permissions:
jobs:
update-docs:
runs-on: ubuntu-latest
if: github.repository_owner == 'expressjs'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run scripts
run: bash ./get-contributing.sh && bash ./get-readmes.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
uses: gr2m/create-or-update-pull-request-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: update external docs
title: 'Update external docs'
body: >
This auto-generated PR updates external documentation to the expressjs.com repository.
labels: doc
team_reviewers: docs-wg
branch: external-docs-${{ github.sha }}
delete-branch: true


Loading