Skip to content

Update Org Profile #322

Update Org Profile

Update Org Profile #322

Workflow file for this run

name: Update Org Profile
on:
push:
branches: [main]
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build profile README
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python build_readme.py
- name: Commit and push if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add profile/README.md
git diff --staged --quiet && echo "No changes" && exit 0
git commit -m "docs: update variableway project list [skip ci]"
git push