Merge pull request #235 from DocBrown101/main #59
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: Automatic Size Update | |
on: | |
push: | |
branches: [ main ] | |
# schedule: | |
# - cron: '0 0 * * 1' | |
jobs: | |
SizeCheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check Directory | |
run: ls -a .. | |
- name: Download Control Script | |
run: wget https://raw.githubusercontent.com/bottlesdevs/tools/main/DependenciesUpdater/CheckFileSize.py | |
- name: Run script in Deps/Essential | |
run: HIDE_PROGRESS=true python3 CheckFileSize.py . | |
- name: Remove control script | |
run: rm CheckFileSize.py | |
- name: Create a pull request with updated checksums | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Updated file size | |
title: '[Update] Updated file size' | |
body: 'Hi! I have updated the file_size entry in every file and now I want a cookie :p' | |
labels: Checksums | |
add-paths: . |