VBA-Scan-And-Suggest #56
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
# This workflow will install Python dependencies, performs line ending conversions and commit the changes | |
name: VBA-Scan-And-Suggest | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 16 * * *' | |
permissions: | |
contents: write | |
issues: write # Ensure the token has permission to create issues | |
jobs: | |
scan-and-suggest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install python dependencies | |
run: | | |
pwd | |
python -m pip install --upgrade pip | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Run script | |
run: | | |
python './.github/workflows/scan_and_suggest.py' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |