├── .github └── workflows │ └── cleanup.yml └── README.md /.github/workflows/cleanup.yml: -------------------------------------------------------------------------------- 1 | name: Cleanup PR artifacts 2 | on: 3 | push: 4 | branches: [ "device" ] 5 | 6 | workflow_dispatch: 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | 14 | - name: Run a multi-line script 15 | run: | 16 | find pr -type f -mtime +60 -delete 17 | 18 | - name: Commit & Push changes 19 | uses: Andro999b/push@v1.3 20 | with: 21 | github_token: ${{ secrets.GITHUB_TOKEN }} 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![CLA assistant](https://cla-assistant.io/readme/badge/meshtastic/artifacts)](https://cla-assistant.io/meshtastic/artifacts) 2 | 3 | # Meshtastic artifacts 4 | Artifacts repository for Meshtastic software builds from pull-requests and other non-release sources 5 | --------------------------------------------------------------------------------