RaiseHigh @FocusSight #171
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: | |
issues: | |
types: [opened] | |
name: Invite a new user by comment | |
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/AutoInviteToOrgByNewIssue.py | |
env: | |
MY_GITHUB_KEY: ${{ secrets.MY_GITHUB_KEY }} | |
COMMUNITY_TEAM_ID: ${{ secrets.COMMUNITY_TEAM_ID }} |