Changeset 61050
- Timestamp:
- 10/22/2025 06:05:41 PM (5 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 13 edited
-
check-built-files.yml (modified) (1 diff)
-
coding-standards.yml (modified) (2 diffs)
-
commit-built-file-changes.yml (modified) (1 diff)
-
end-to-end-tests.yml (modified) (1 diff)
-
javascript-tests.yml (modified) (1 diff)
-
performance.yml (modified) (1 diff)
-
php-compatibility.yml (modified) (1 diff)
-
phpunit-tests.yml (modified) (5 diffs)
-
pull-request-comments.yml (modified) (2 diffs)
-
test-and-zip-default-themes.yml (modified) (2 diffs)
-
test-build-processes.yml (modified) (1 diff)
-
upgrade-develop-testing.yml (modified) (1 diff)
-
workflow-lint.yml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/check-built-files.yml
r60625 r61050 46 46 check-for-built-file-changes: 47 47 name: Check built files 48 # This prevents an unnecessary second run after changes are committed back because Dependabot always rebases and force pushes. 49 if: ${{ github.repository == 'wordpress/wordpress-develop' && ( github.actor != 'dependabot[bot]' || github.event.commits < 2 ) }} 48 if: ${{ github.repository == 'wordpress/wordpress-develop' }} 50 49 uses: ./.github/workflows/reusable-check-built-files.yml 51 50 permissions: -
trunk/.github/workflows/coding-standards.yml
r60628 r61050 55 55 permissions: 56 56 contents: read 57 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}57 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 58 58 59 59 # Runs the JavaScript coding standards checks. … … 63 63 permissions: 64 64 contents: read 65 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}65 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 66 66 67 67 slack-notifications: -
trunk/.github/workflows/commit-built-file-changes.yml
r60692 r61050 161 161 working-directory: 'pr-repo' 162 162 run: | 163 git commit -m "Automation: Updating built files with changes. [dependabot skip]"163 git commit -m "Automation: Updating built files with changes." 164 164 165 165 - name: Push changes -
trunk/.github/workflows/end-to-end-tests.yml
r60628 r61050 61 61 permissions: 62 62 contents: read 63 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}63 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 64 64 strategy: 65 65 fail-fast: false -
trunk/.github/workflows/javascript-tests.yml
r60625 r61050 56 56 permissions: 57 57 contents: read 58 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}58 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 59 59 60 60 slack-notifications: -
trunk/.github/workflows/performance.yml
r60735 r61050 54 54 name: Determine Matrix 55 55 runs-on: ubuntu-24.04 56 if: ${{ ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )) && ! contains( github.event.before, '00000000' ) }}56 if: ${{ ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) && ! contains( github.event.before, '00000000' ) }} 57 57 permissions: 58 58 actions: read -
trunk/.github/workflows/php-compatibility.yml
r60080 r61050 48 48 permissions: 49 49 contents: read 50 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}50 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 51 51 52 52 slack-notifications: -
trunk/.github/workflows/phpunit-tests.yml
r61018 r61050 68 68 contents: read 69 69 secrets: inherit 70 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )) }}70 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 71 71 strategy: 72 72 fail-fast: false … … 204 204 contents: read 205 205 secrets: inherit 206 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )) }}206 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 207 207 strategy: 208 208 fail-fast: false … … 451 451 contents: read 452 452 secrets: inherit 453 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )) }}453 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 454 454 strategy: 455 455 fail-fast: false … … 518 518 contents: read 519 519 secrets: inherit 520 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )) }}520 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 521 521 strategy: 522 522 fail-fast: false … … 547 547 contents: read 548 548 secrets: inherit 549 if: ${{ ! startsWith( github.repository, 'WordPress/' ) && github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'}}549 if: ${{ ! startsWith( github.repository, 'WordPress/' ) && github.event_name == 'pull_request' }} 550 550 strategy: 551 551 fail-fast: false -
trunk/.github/workflows/pull-request-comments.yml
r60327 r61050 126 126 - name: Leave a comment about testing with Playground 127 127 uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 128 if: ${{ github.actor != 'dependabot[bot]' }}129 128 with: 130 129 script: | … … 175 174 issues: write 176 175 pull-requests: write 177 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name == 'pull_request_target' && ! github.event.pull_request.draft && github.event.pull_request.state == 'open' && github.actor != 'dependabot[bot]'}}176 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name == 'pull_request_target' && ! github.event.pull_request.draft && github.event.pull_request.state == 'open' }} 178 177 steps: 179 178 - name: Check for Trac ticket and manage comment -
trunk/.github/workflows/test-and-zip-default-themes.yml
r60934 r61050 70 70 contents: read 71 71 timeout-minutes: 10 72 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}72 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 73 73 strategy: 74 74 fail-fast: false … … 120 120 contents: read 121 121 timeout-minutes: 10 122 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}122 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 123 123 strategy: 124 124 fail-fast: false -
trunk/.github/workflows/test-build-processes.yml
r60765 r61050 54 54 permissions: 55 55 contents: read 56 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}56 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 57 57 strategy: 58 58 fail-fast: false -
trunk/.github/workflows/upgrade-develop-testing.yml
r60624 r61050 48 48 name: Build 49 49 uses: ./.github/workflows/reusable-build-package.yml 50 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )) }}50 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 51 51 permissions: 52 52 contents: read -
trunk/.github/workflows/workflow-lint.yml
r60082 r61050 34 34 name: Lint GitHub Action files 35 35 uses: ./.github/workflows/reusable-workflow-lint.yml 36 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' )}}36 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 37 37 permissions: 38 38 security-events: write
Note: See TracChangeset
for help on using the changeset viewer.