Skip to content

Commit

Permalink
ugit PSA integration (Fixes #186)
Browse files Browse the repository at this point in the history
Fixing On Demand action
  • Loading branch information
James Brundage committed Oct 5, 2023
1 parent 64ea45b commit 2af6a91
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/SendPSA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ on:
workflow_dispatch:
jobs:
SendPSA:
name: PSA
uses: StartAutomating/PSA@main
id: PSA
runs-on: ubuntu-latest
if: ${{ success() }}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: PSA
uses: StartAutomating/PSA@main
id: PSA
env:
AT_PROTOCOL_HANDLE: mrpowershell.bsky.social
AT_PROTOCOL_APP_PASSWORD: ${{ secrets.AT_PROTOCOL_APP_PASSWORD }}
16 changes: 13 additions & 3 deletions GitHub/Jobs/SendPSA.psd1
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
@{
name = 'PSA'
uses = 'StartAutomating/PSA@main'
id = 'PSA'
"runs-on" = "ubuntu-latest"
if = '${{ success() }}'
steps = @(
@{
name = 'Check out repository'
uses = 'actions/checkout@v2'
},
@{
name = 'PSA'
uses = 'StartAutomating/PSA@main'
id = 'PSA'
}
)
}

0 comments on commit 2af6a91

Please sign in to comment.