Skip to content

chore(deps): bump mr-boxington to 1.8.3 (#1390) #7433

chore(deps): bump mr-boxington to 1.8.3 (#1390)

chore(deps): bump mr-boxington to 1.8.3 (#1390) #7433

Workflow file for this run

name: test
on:
push:
branches: ["main"]
pull_request:
permissions: {}
jobs:
trusted:
if: ${{ github.actor == 'jdx' && (github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.user.login == 'jdx')) }}
permissions:
contents: read
uses: ./.github/workflows/test-impl.yml
with:
trusted: true
untrusted:
if: ${{ github.actor != 'jdx' || (github.event_name == 'pull_request' && (github.event.pull_request.head.repo.full_name != github.repository || github.event.pull_request.user.login != 'jdx')) }}
permissions:
contents: read
uses: ./.github/workflows/test-impl.yml
with:
trusted: false
final:
name: final
if: ${{ always() && !cancelled() && needs.trusted.result != 'cancelled' && needs.untrusted.result != 'cancelled' }}
permissions: {}
needs: [trusted, untrusted]
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Check selected workflow result
env:
TRUSTED_RESULT: ${{ needs.trusted.result }}
UNTRUSTED_RESULT: ${{ needs.untrusted.result }}
run: |
if [[ "$TRUSTED_RESULT" == success && "$UNTRUSTED_RESULT" == skipped ]] ||
[[ "$TRUSTED_RESULT" == skipped && "$UNTRUSTED_RESULT" == success ]]; then
exit 0
fi
echo "trusted=$TRUSTED_RESULT untrusted=$UNTRUSTED_RESULT"
exit 1