Changeset 51535
- Timestamp:
- 08/03/2021 01:45:02 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r51511 r51535 147 147 - name: Ensure version-controlled files are not modified or deleted 148 148 run: git diff --exit-code 149 150 # Post workflow related status updates to Slack.151 #152 # When a job in this workflow fails, a message is posted to #core.153 #154 # This job should always require all other jobs in this workflow to complete before running.155 slack-notifications:156 name: Slack Notifications157 runs-on: ubuntu-latest158 needs: [ phpcs, jshint ]159 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}160 161 steps:162 - name: Post failure notification to Slack163 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0164 with:165 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"166 env:167 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/end-to-end-tests.yml
r51511 r51535 117 117 - name: Ensure version-controlled files are not modified or deleted 118 118 run: git diff --exit-code 119 120 # Post workflow related status updates to Slack.121 #122 # When a job in this workflow fails, a message is posted to #core.123 #124 # This job should always require all other jobs in this workflow to complete before running.125 slack-notifications:126 name: Slack Notifications127 runs-on: ubuntu-latest128 needs: [ e2e-tests ]129 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}130 131 steps:132 - name: Post failure notification to Slack133 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0134 with:135 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"136 env:137 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/javascript-tests.yml
r51511 r51535 86 86 - name: Ensure version-controlled files are not modified or deleted 87 87 run: git diff --exit-code 88 89 # Post workflow related status updates to Slack.90 #91 # When a job in this workflow fails, a message is posted to #core.92 #93 # This job should always require all other jobs in this workflow to complete before running.94 slack-notifications:95 name: Slack Notifications96 runs-on: ubuntu-latest97 needs: [ test-js ]98 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}99 100 steps:101 - name: Post failure notification to Slack102 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0103 with:104 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"105 env:106 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/php-compatibility.yml
r51511 r51535 88 88 - name: Ensure version-controlled files are not modified or deleted 89 89 run: git diff --exit-code 90 91 # Post workflow related status updates to Slack.92 #93 # When a job in this workflow fails, a message is posted to #core.94 #95 # This job should always require all other jobs in this workflow to complete before running.96 slack-notifications:97 name: Slack Notifications98 runs-on: ubuntu-latest99 needs: [ php-compatibility ]100 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}101 102 steps:103 - name: Post failure notification to Slack104 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0105 with:106 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"107 env:108 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/phpunit-tests.yml
r51511 r51535 237 237 WPT_REPORT_API_KEY: "${{ secrets.WPT_REPORT_API_KEY }}" 238 238 run: docker-compose run --rm -e WPT_REPORT_API_KEY -e WPT_PREPARE_DIR=/var/www -e WPT_TEST_DIR=/var/www php php test-runner/report.php 239 240 # Post workflow related status updates to Slack.241 #242 # When a job in this workflow fails, a message is posted to #core.243 #244 # This job should always require all other jobs in this workflow to complete before running.245 slack-notifications:246 name: Slack Notifications247 runs-on: ubuntu-latest248 needs: [ test-php ]249 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}250 251 steps:252 - name: Post failure notification to Slack253 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0254 with:255 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"256 env:257 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/test-coverage.yml
r51511 r51535 147 147 file: wp-code-coverage-multisite-clover-${{ github.sha }}.xml 148 148 flags: multisite,php 149 150 # Post workflow related status updates to Slack.151 #152 # When a job in this workflow fails, a message is posted to #core.153 #154 # This job should always require all other jobs in this workflow to complete before running.155 slack-notifications:156 name: Slack Notifications157 runs-on: ubuntu-latest158 needs: [ test-coverage-report ]159 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}160 161 steps:162 - name: Post failure notification to Slack163 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0164 with:165 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"166 env:167 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/test-npm.yml
r51511 r51535 155 155 - name: Ensure version-controlled files are not modified or deleted during building and cleaning 156 156 run: git diff --exit-code 157 158 # Post workflow related status updates to Slack.159 #160 # When a job in this workflow fails, a message is posted to #core.161 #162 # This job should always require all other jobs in this workflow to complete before running.163 slack-notifications:164 name: Slack Notifications165 runs-on: ubuntu-latest166 needs: [ test-npm, test-npm-macos ]167 if: ${{ failure() && github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' }}168 169 steps:170 - name: Post failure notification to Slack171 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0172 with:173 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"174 env:175 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/test-old-branches.yml
r51511 r51535 70 70 ref: '${{ matrix.branch }}' 71 71 }); 72 73 # Post workflow related status updates to Slack.74 #75 # When a job in this workflow fails, a message is posted to #core.76 #77 # This job should always require all other jobs in this workflow to complete before running.78 slack-notifications:79 name: Slack Notifications80 runs-on: ubuntu-latest81 needs: [ dispatch-workflows-for-old-branches ]82 if: ${{ failure() }}83 84 steps:85 - name: Post failure notification to Slack86 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.087 with:88 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"89 env:90 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/.github/workflows/welcome-new-contributors.yml
r51511 r51535 58 58 59 59 The WordPress Project 60 61 # Post workflow related status updates to Slack.62 #63 # When a job in this workflow fails, a message is posted to #core.64 #65 # This job should always require all other jobs in this workflow to complete before running.66 slack-notifications:67 name: Slack Notifications68 runs-on: ubuntu-latest69 needs: [ post-welcome-message ]70 if: ${{ failure() }}71 72 steps:73 - name: Post failure notification to Slack74 uses: slackapi/slack-github-action@d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.075 with:76 payload: "{\"workflow_name\":\"${{ github.workflow }}\",\"run_url\":\"https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}"77 env:78 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GHA_WEBHOOK_URL }} -
trunk/src/wp-cron.php
r51512 r51535 61 61 62 62 $value = 0; 63 if ( wp_using_ext_object_cache()) {63 if (wp_using_ext_object_cache()) { 64 64 /* 65 65 * Skip local cache and force re-fetch of doing_cron transient -
trunk/tests/phpunit/tests/functions.php
r51512 r51535 28 28 $b = array( 29 29 '_baba' => 5, 30 'yZ' => 'bab a',30 'yZ' => 'bab', 31 31 'a' => array( 5, 111, 'x' ), 32 32 );
Note: See TracChangeset
for help on using the changeset viewer.