1 - Reports Generator #194
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: 1 - Reports Generator | |
on: | |
schedule: | |
- cron: "55 23 * * MON" #Every Monday at 23:55 | |
# - cron: "55 23 1,15 * *" #Every 2 weeks on day 1 and 15 at 23:55 | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Github Installation | |
run: | | |
sudo apt-get install -y git | |
- name: Ritchie Installation & Initialization | |
run: | | |
curl -fsSL https://commons-repo.ritchiecli.io/install.sh | bash | |
echo '{"addCommons":false, "sendMetrics":true, "runType":"local"}' | rit init --stdin | |
- name: Create new report file | |
env: | |
USERNAME_CREDENTIAL: ${{ secrets.USERNAME_CREDENTIAL }} | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
run: | | |
cd $GITHUB_WORKSPACE/reports | |
rit add repo --provider="Github" --name="formulas-github" --repoUrl="https://github.com/GuillaumeFalourd/formulas-github" --priority=1 | |
rit set credential --provider=github --fields=username,token --values="$USERNAME_CREDENTIAL","$ACCESS_TOKEN" | |
rit github get insights --rit_repos="ALL" | |
- name: Commit and Push new file | |
uses: GuillaumeFalourd/git-commit-push@v1 |