Load env values with Xcode, Android Studio build #89
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: Auto message for Issues | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
comment: | |
name: Hello new contributor | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Posts comment | |
env: | |
issue_num: ${{github.event.issue.number}} | |
comment_message: "Hey, thank you for opening this issue! 🙂 To boost priority on this issue and support open source please tip the team at https://issuehunt.io/r/${{github.repository}}/issues/${{github.event.issue.number }}" | |
run: gh issue comment $issue_num --body "$comment_message" |