Clean up Default Meteor Files (#140) #1
This file contains hidden or 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: Compress Default Meteor Configs | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: [ raw/meteors/* ] | |
| workflow_dispatch: { } | |
| jobs: | |
| meteors: | |
| name: Compress Default Meteor Configs | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Compress Default Meteor Configs | |
| run: python .github/scripts/compress.py meteors meteors/meteors.zip | |
| - name: Create PR | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| title: Compress Default Meteor Configs | |
| body: Automated changes by Compress Default Meteor Configs workflow. | |
| commit-message: Compress Default Meteor Configs | |
| delete-branch: true | |
| branch: meteor-configs/patch |