Bump drupal/geofield from 1.61.0 to 1.62.0 #8166
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Set Tugboat Tests Pending | |
on: | |
- pull_request_target | |
permissions: | |
pull-requests: write | |
checks: write | |
contents: write | |
statuses: write | |
jobs: | |
# Tugboat tests are not automatically set pending, even though they are | |
# required in branch protection rules (see #10553). | |
# | |
# Therefore, a PR can inappropriately appear to be ready to merge if, | |
# for instance, a composer.lock merge conflict prevents the Tugboat | |
# preview from successfully building. | |
# | |
# This action sets these tests pending from an immediate GitHub Action | |
# so that we can trust our automated code review processes more. | |
set-tugboat-tests-pending: | |
name: Set Tugboat Tests Pending | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set status for Tugboat tasks. | |
run: | | |
test_names=( | |
va/tests/cypress | |
va/tests/phpunit | |
va/tests/content-build-gql | |
va/tests/status-error | |
) | |
for test_name in "${test_names[@]}"; do | |
gh api \ | |
--method POST \ | |
-H "Accept: application/vnd.github+json" \ | |
"/repos/${GITHUB_REPOSITORY}/statuses/${SHA}" \ | |
-f state='pending' \ | |
-f context="${test_name}"; | |
done; | |
env: | |
SHA: ${{ github.event.pull_request.head.sha }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |