Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/coinpay.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Managed by sh1pt Actions Fleet
# pack: coinpay-invoice@1.0.0
# install: sh1pt-actions-store
# hash: sha256:34ad3313699d6a34845801f6d1c0963e36bee5d375678ffdd2a4bf0f46a17fa2
name: CoinPayPortal invoice command

on:
issue_comment:
types: [created]

permissions:
issues: write
pull-requests: write

concurrency:
group: coinpay-${{ github.workflow }}-${{ github.event.issue.number }}
cancel-in-progress: false

jobs:
coinpay:
# Only spin up when a comment actually invokes the bot.
if: startsWith(github.event.comment.body, '/coinpay')
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: profullstack/coinpaybot@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
coinpay-api-key: ${{ secrets.COINPAY_API_KEY }}
coinpay-business-id: ${{ secrets.COINPAY_BUSINESS_ID }}
coinpay-base-url: https://coinpayportal.com
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
steps:
- uses: actions/checkout@v4

# The test suite shells out to ffmpeg/ffprobe and ImageMagick's convert;
# install them so the integration tests can run on the runner.
- name: Install FFmpeg and ImageMagick
run: sudo apt-get update && sudo apt-get install -y ffmpeg imagemagick

# pnpm version is read from the "packageManager" field in package.json.
# Do not pin a version here — it conflicts with packageManager and fails
# with ERR_PNPM_BAD_PM_VERSION.
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

pnpm-lock.yaml
ffmpeg_build/

# Environment variables
Expand Down
Loading
Loading