chore(deps): update all dependencies #353
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
# triggers on merge_group and pull_request events | |
# only use this if merge queue is enabled, otherwise stick to test-command for e2e testing | |
name: pr-merge-group | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
defaults: | |
run: | |
shell: bash -eo pipefail {0} | |
permissions: | |
id-token: write # needed for oidc auth for AWS creds | |
contents: read | |
jobs: | |
pr-merge-group-test: | |
uses: defenseunicorns/delivery-github-actions-workflows/.github/workflows/pr-merge-group-test.yml@main | |
secrets: | |
APPLICATION_ID: ${{ secrets.NARWHAL_BOT_APP_ID }} | |
APPLICATION_PRIVATE_KEY: ${{ secrets.NARWHAL_BOT_SECRET }} | |
AWS_COMMERCIAL_ROLE_TO_ASSUME: ${{ secrets.NARWHAL_AWS_COMMERCIAL_ROLE_TO_ASSUME }} | |
AWS_GOVCLOUD_ROLE_TO_ASSUME: ${{ secrets.NARWHAL_AWS_GOVCLOUD_ROLE_TO_ASSUME }} |