Changeset 60080
- Timestamp:
- 03/25/2025 01:00:57 PM (11 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 13 edited
-
coding-standards.yml (modified) (2 diffs)
-
end-to-end-tests.yml (modified) (1 diff)
-
install-testing.yml (modified) (2 diffs)
-
javascript-tests.yml (modified) (1 diff)
-
local-docker-environment.yml (modified) (2 diffs)
-
performance.yml (modified) (1 diff)
-
php-compatibility.yml (modified) (1 diff)
-
phpunit-tests.yml (modified) (4 diffs)
-
test-and-zip-default-themes.yml (modified) (2 diffs)
-
test-build-processes.yml (modified) (2 diffs)
-
upgrade-develop-testing.yml (modified) (1 diff)
-
upgrade-testing.yml (modified) (7 diffs)
-
workflow-lint.yml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r59720 r60080 53 53 permissions: 54 54 contents: read 55 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}55 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 56 56 57 57 # Runs the JavaScript coding standards checks. … … 61 61 permissions: 62 62 contents: read 63 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}63 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 64 64 65 65 slack-notifications: -
trunk/.github/workflows/end-to-end-tests.yml
r60004 r60080 59 59 permissions: 60 60 contents: read 61 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}61 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 62 62 strategy: 63 63 fail-fast: false -
trunk/.github/workflows/install-testing.yml
r59720 r60080 48 48 contents: read 49 49 secrets: inherit 50 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}50 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 51 51 with: 52 52 wp-version: ${{ inputs.wp-version }} … … 64 64 contents: read 65 65 runs-on: ${{ matrix.os }} 66 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}66 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 67 67 timeout-minutes: 10 68 68 needs: [ build-test-matrix ] -
trunk/.github/workflows/javascript-tests.yml
r59725 r60080 54 54 permissions: 55 55 contents: read 56 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}56 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 57 57 58 58 slack-notifications: -
trunk/.github/workflows/local-docker-environment.yml
r59725 r60080 74 74 contents: read 75 75 secrets: inherit 76 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}76 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 77 77 with: 78 78 wp-version: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref_name }} … … 84 84 permissions: 85 85 contents: read 86 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}87 86 needs: [ build-test-matrix ] 88 87 strategy: -
trunk/.github/workflows/performance.yml
r59749 r60080 52 52 name: Determine Matrix 53 53 runs-on: ubuntu-24.04 54 if: ${{ ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request') && ! contains( github.event.before, '00000000' ) }}54 if: ${{ ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) ) && ! contains( github.event.before, '00000000' ) }} 55 55 permissions: {} 56 56 env: -
trunk/.github/workflows/php-compatibility.yml
r59720 r60080 48 48 permissions: 49 49 contents: read 50 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}50 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 51 51 52 52 slack-notifications: -
trunk/.github/workflows/phpunit-tests.yml
r59725 r60080 60 60 contents: read 61 61 secrets: inherit 62 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}62 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 63 63 strategy: 64 64 fail-fast: false … … 131 131 contents: read 132 132 secrets: inherit 133 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}133 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 134 134 strategy: 135 135 fail-fast: false … … 181 181 contents: read 182 182 secrets: inherit 183 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}183 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 184 184 strategy: 185 185 fail-fast: false … … 224 224 contents: read 225 225 secrets: inherit 226 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}226 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 227 227 strategy: 228 228 fail-fast: false -
trunk/.github/workflows/test-and-zip-default-themes.yml
r60051 r60080 64 64 contents: read 65 65 timeout-minutes: 10 66 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}66 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 67 67 strategy: 68 68 fail-fast: false … … 114 114 contents: read 115 115 timeout-minutes: 10 116 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}116 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 117 117 strategy: 118 118 fail-fast: false -
trunk/.github/workflows/test-build-processes.yml
r59725 r60080 52 52 permissions: 53 53 contents: read 54 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}54 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 55 55 strategy: 56 56 fail-fast: false … … 100 100 permissions: 101 101 contents: read 102 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}102 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 103 103 strategy: 104 104 fail-fast: false -
trunk/.github/workflows/upgrade-develop-testing.yml
r59956 r60080 55 55 name: Upgrade from ${{ matrix.wp }} 56 56 uses: ./.github/workflows/reusable-upgrade-testing.yml 57 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}57 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 58 58 needs: [ build ] 59 59 strategy: -
trunk/.github/workflows/upgrade-testing.yml
r59973 r60080 59 59 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 60 60 uses: ./.github/workflows/reusable-upgrade-testing.yml 61 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}61 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 62 62 strategy: 63 63 fail-fast: false … … 94 94 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 95 95 uses: ./.github/workflows/reusable-upgrade-testing.yml 96 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}96 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 97 97 strategy: 98 98 fail-fast: false … … 122 122 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 123 123 uses: ./.github/workflows/reusable-upgrade-testing.yml 124 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}124 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 125 125 strategy: 126 126 fail-fast: false … … 154 154 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 155 155 uses: ./.github/workflows/reusable-upgrade-testing.yml 156 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}156 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 157 157 strategy: 158 158 fail-fast: false … … 179 179 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 180 180 uses: ./.github/workflows/reusable-upgrade-testing.yml 181 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}181 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 182 182 strategy: 183 183 fail-fast: false … … 213 213 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 214 214 uses: ./.github/workflows/reusable-upgrade-testing.yml 215 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}215 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 216 216 strategy: 217 217 fail-fast: false … … 237 237 name: ${{ matrix.wp }} to ${{ inputs.new-version && inputs.new-version || 'latest' }} 238 238 uses: ./.github/workflows/reusable-upgrade-testing.yml 239 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request'}}239 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 240 240 strategy: 241 241 fail-fast: false -
trunk/.github/workflows/workflow-lint.yml
r59679 r60080 33 33 lint: 34 34 name: Lint GitHub Action files 35 uses: ./.github/workflows/reusable-workflow-lint.yml 36 if: ${{ github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) }} 35 37 permissions: 36 38 security-events: write 37 39 actions: read 38 40 contents: read 39 uses: ./.github/workflows/reusable-workflow-lint.yml
Note: See TracChangeset
for help on using the changeset viewer.