Get Invitation Link #12
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
on: | |
issue_comment: | |
types: [created, edited] | |
name: Sending Invitation To The Recent Commenter | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
if [ -f ./.github/workflows/requirements.txt ]; then pip install -r ./.github/workflows/requirements.txt; fi | |
- name: execute py script | |
run: | | |
python ./.github/workflows/AutoInviteToOrgByIssueComment.py | |
env: | |
MY_GITHUB_KEY: ${{ secrets.MY_GITHUB_KEY }} | |
COMMUNITY_TEAM_ID: ${{ secrets.COMMUNITY_TEAM_ID }} |