Skip to content

Commit

Permalink
tmp: create_report_discussion workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMinds committed Jan 25, 2024
1 parent b25108c commit 02990fa
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/create_report_discussion.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create Report Discussion

on:
workflow_dispatch:
push:
branches:
- master
paths:
- packages/scripts/snapshots

jobs:
default:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}

- name: report:discussion
env:
# TODO:
# The script requires public_repo, read:org, read:project permissions, and needs a personal access token (classic) to obtain these permissions.
GITHUB_TOKEN: ${{ secrets.REPORT_GITHUB_TOKEN }}
run: |
yarn install
yarn workspace @magickbase-website/scripts report:discussion

0 comments on commit 02990fa

Please sign in to comment.