Add new workflow for detecting changes in dot org #41
This file contains hidden or 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: Detect changes in documentation within nginx/nginx.org | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| detect-changes: | |
| name: Detect changes in 'en' docs of nginx/nginx.org | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Create PR | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: "chore: Update nginx plus module reference from detected changes in nginx/nginx.org" | |
| labels: product/nginx-plus, dependencies, module-reference | |
| base: main | |
| branch: update-nginx-module-ref | |
| title: 'NGINX Plus - Module Ref: Update content for content/nginx due to detected changes' | |
| body: | | |
| ### Proposed Changes | |
| Updated NGINX Plus docs. |