JesseCaddell created an issue #113
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-assign and send to Smartsheet | |
run-name: ${{ github.actor }} created an issue | |
on: | |
issues: | |
types: [opened] | |
env: | |
SMART_ACCESS_TOKEN: ${{ secrets.SMARTSHEET_ACCESS_TOKEN }} | |
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
ISSUE_NUM: ${{ vars.ISSUE_NUM }} | |
permissions: | |
issues: write | |
jobs: | |
auto-assign-and-store: | |
runs-on: ubuntu-latest | |
steps: | |
# Auto-assign the issue | |
- name: Auto-assign Issue | |
uses: pozil/auto-assign-issue@v1 | |
with: | |
repo-token: ${{ secrets.AUTO_ASSIGN_ISSUE_TOKEN }} | |
assignees: ${{ github.actor }} | |
# Wait for assignment to complete | |
- name: Wait for assignment to complete | |
run: sleep 5 | |
# Increment issue number | |
- name: Increment | |
id: increment_issue_num | |
uses: action-pack/increment@v2 | |
with: | |
name: 'ISSUE_NUM' | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Set up Python environment | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
# Install dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
pip install smartsheet-python-sdk | |
pip install python-dotenv | |
# Fetch data and write to Smartsheet | |
- name: Fetch Data and Write to Smartsheet | |
run: | | |
python post-issue-smartsheet.py | |