[BUGS-6560]: Adds on-push activation #1
Workflow file for this run
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: SSH Auth Testing | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'BUGS-6560-Auth' | ||
jobs: | ||
test-ssh-auth: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'pantheon-systems/search_api_pantheon' }} | ||
env: | ||
BRANCH: ${{ github.ref_name }} | ||
WORKSPACE: ${{ github.workspace }} | ||
DRUPAL_ORG_REMOTE: ${{ secrets.DRUPAL_ORG_REMOTE }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install SSH key | ||
uses: shimataro/ssh-key-action@v2 | ||
with: | ||
key: ${{ secrets.SSH_KEY }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
if_key_exists: ignore | ||
- name: Test SSH Auth | ||
id: test auth | ||
Check failure on line 30 in .github/workflows/ssh-auth-testing.yml GitHub Actions / SSH Auth TestingInvalid workflow file
|
||
run: | | ||
gh auth status | ||
gh config git | ||