Skip to content

Commit

Permalink
wip: Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
clockworkgr committed Jul 8, 2024
1 parent 624019a commit 838e719
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/chain-issue-to-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Chain add issue
on:
issues:
types:
- opened
jobs:
issue_to_pr:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- run: echo "$GITHUB_CONTEXT"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
GITHUB_CONTEXT: ${{ toJson(github) }}

0 comments on commit 838e719

Please sign in to comment.