Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add Expense Contribution workflow #98

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
63 changes: 63 additions & 0 deletions .github/workflows/expense.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Expense Contribution

on:
workflow_dispatch:
inputs:
prNumber:
description: "Number of the PR (without #)"
required: true
amount:
description: "The expense amount you like to grant for the contribution in $"
required: true
type: choice
options:
- 15
- 25
- 35
- 50
- 100
- 150
- 200
- 250
- 300
- 350
- 400
- 450
- 500
- 550
- 600
- 650
- 700
- 750
- 800
- 850
- 900
- 950
- 1000

jobs:
authorize:
runs-on: ubuntu-latest
steps:
- uses: octokit/[email protected]
with:
route: GET /orgs/:organisation/teams/:team/memberships/${{ github.actor }}
team: technical-steering-committee
organisation: webdriverio
env:
GITHUB_TOKEN: ${{ secrets.WDIO_BOT_GITHUB_TOKEN }}
expense:
permissions:
contents: write
id-token: write
needs: [authorize]
runs-on: ubuntu-latest
steps:
- name: Run Expense Flow
uses: webdriverio/expense-action@v1
with:
prNumber: ${{ github.event.inputs.prNumber }}
amount: ${{ github.event.inputs.amount }}
env:
RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
GH_TOKEN: ${{ secrets.WDIO_BOT_GITHUB_TOKEN }}