Changeset 55715 for trunk/.github/workflows/coding-standards.yml
- Timestamp:
- 05/03/2023 10:15:27 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r55487 r55715 41 41 cancel-in-progress: true 42 42 43 # Disable permissions for all available scopes by default. 44 # Any needed permissions should be configured at the job level. 45 permissions: {} 46 43 47 jobs: 44 48 # Runs PHP coding standards checks. … … 60 64 name: PHP coding standards 61 65 runs-on: ubuntu-latest 66 permissions: 67 contents: read 62 68 timeout-minutes: 20 63 69 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} … … 131 137 name: JavaScript coding standards 132 138 runs-on: ubuntu-latest 139 permissions: 140 contents: read 133 141 timeout-minutes: 20 134 142 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} … … 178 186 name: Failed workflow tasks 179 187 runs-on: ubuntu-latest 188 permissions: 189 actions: write 180 190 needs: [ phpcs, jshint, slack-notifications ] 181 191 if: |
Note: See TracChangeset
for help on using the changeset viewer.