Octo Kitty #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Trigger | |
# There are a huge number of different events you can trigger off of | |
# see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
new-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: test | |
run: | | |
echo new issue created with title $ISSUE | |
env: | |
ISSUE: ${{ github.event.issue.title }} | |
- uses: devops-actions/[email protected] | |
with: | |
team: glensouza | |
issue: ${{ github.event.issue.number }} | |
owner: ${{ github.repository_owner }} | |
repo: ${{ github.repository }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |