Skip to content

Commit 182bbd3

Browse files
Add .github/workflows/coinpay.yml via sh1pt coinpay-invoice@1.0.0
1 parent a8abf44 commit 182bbd3

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/coinpay.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Managed by sh1pt Actions Fleet
2+
# pack: coinpay-invoice@1.0.0
3+
# install: sh1pt-actions-store
4+
# hash: sha256:34ad3313699d6a34845801f6d1c0963e36bee5d375678ffdd2a4bf0f46a17fa2
5+
name: CoinPayPortal invoice command
6+
7+
on:
8+
issue_comment:
9+
types: [created]
10+
11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
15+
concurrency:
16+
group: coinpay-${{ github.workflow }}-${{ github.event.issue.number }}
17+
cancel-in-progress: false
18+
19+
jobs:
20+
coinpay:
21+
# Only spin up when a comment actually invokes the bot.
22+
if: startsWith(github.event.comment.body, '/coinpay')
23+
runs-on: ubuntu-latest
24+
timeout-minutes: 15
25+
steps:
26+
- uses: profullstack/coinpaybot@v0
27+
with:
28+
github-token: ${{ secrets.GITHUB_TOKEN }}
29+
coinpay-api-key: ${{ secrets.COINPAY_API_KEY }}
30+
coinpay-business-id: ${{ secrets.COINPAY_BUSINESS_ID }}
31+
coinpay-base-url: https://coinpayportal.com

0 commit comments

Comments
 (0)