diff --git a/.github/workflows/bounty-complete.yaml b/.github/workflows/bounty-complete.yaml new file mode 100644 index 000000000..cf6f6af4f --- /dev/null +++ b/.github/workflows/bounty-complete.yaml @@ -0,0 +1,13 @@ +name: Bounty Complete Workflow + +on: + issues: + types: + - closed + +permissions: + issues: write + +jobs: + call-central-workflow: + uses: tenstorrent/tt-github-actions/.github/workflows/bounty-complete.yml@main diff --git a/.github/workflows/bounty-stale.yaml b/.github/workflows/bounty-stale.yaml new file mode 100644 index 000000000..86b016514 --- /dev/null +++ b/.github/workflows/bounty-stale.yaml @@ -0,0 +1,12 @@ +name: Stale Bounty Workflow + +on: + schedule: + - cron: '30 1 * * *' # every day at 1:30 UTC + +permissions: + issues: write + +jobs: + call-central-workflow: + uses: tenstorrent/tt-github-actions/.github/workflows/bounty-stale.yml@main diff --git a/.github/workflows/bounty-terms.yaml b/.github/workflows/bounty-terms.yaml new file mode 100644 index 000000000..16d017de9 --- /dev/null +++ b/.github/workflows/bounty-terms.yaml @@ -0,0 +1,13 @@ +name: Bounty Terms Workflow + +on: + issues: + types: + - assigned + +permissions: + issues: write + +jobs: + call-central-workflow: + uses: tenstorrent/tt-github-actions/.github/workflows/bounty-terms.yml@main