Skip to content

Commit

Permalink
Create generate-table.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
endail authored Jun 26, 2024
1 parent 82fd3df commit ac1e1cc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/generate-table.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: generate-table-action

on: [workflow_dispatch]

jobs:
build:
name: generate
runs-on: ubuntu-latest
steps:

- name: Checkout repo
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}

- run: |
git config --global user.name "github-actions[bot]";
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com";
python3 scripts/generate.py;
git add -A;
git push;

0 comments on commit ac1e1cc

Please sign in to comment.