Skip to content

Commit

Permalink
Create 25abril-mulheres-cronologia.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmsantos authored Feb 2, 2024
1 parent cb5e516 commit 0d9d4a6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/25abril-mulheres-cronologia.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Cronologia mulheres 25 abril

on:
workflow_dispatch:
#schedule:
# - cron: '0 4 1 * *'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Convert google sheet to csv
run: |-
wget -O mulheres25abril/cronologia.csv --no-check-certificate "https://docs.google.com/spreadsheets/d/e/2PACX-1vQ3WwA_73awrFMkrPw7w_JwCeDPHikxop7wKPsRBW2KUW-0vu3zKSCCQo1ed1G8Cw/pub?output=csv"
- name: Commit and push changes
run: |-
git diff
git config user.name "Automated"
git config user.email "---"
git diff --quiet || (git add -A && git commit -m "Updated cronologia mulheres 25 abril")
git push

0 comments on commit 0d9d4a6

Please sign in to comment.