- Timestamp:
- 01/22/2025 03:13:21 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-coding-standards-php.yml
r59354 r59679 17 17 type: 'boolean' 18 18 default: false 19 20 # Disable permissions for all available scopes by default. 21 # Any needed permissions should be configured at the job level. 22 permissions: {} 19 23 20 24 jobs: … … 46 50 with: 47 51 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 52 persist-credentials: false 48 53 49 54 - name: Set up PHP … … 58 63 - name: "Get last Monday's date" 59 64 id: get-date 60 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT65 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> "$GITHUB_OUTPUT" 61 66 62 67 - name: Cache PHPCS scan cache … … 76 81 77 82 - name: Make Composer packages available globally 78 run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH83 run: echo "${PWD}/vendor/bin" >> "$GITHUB_PATH" 79 84 80 85 - name: Run PHPCS on all Core files
Note: See TracChangeset
for help on using the changeset viewer.