Run prefmonitor weekly #157
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: Run prefmonitor weekly | |
| on: | |
| schedule: | |
| - cron: '0 8 * * 1' | |
| jobs: | |
| build: | |
| name: Run prefmonitor | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout prefpicker | |
| uses: actions/checkout@v3 | |
| with: | |
| path: prefpicker | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - run: | | |
| pip install ./prefpicker | |
| pip install git+https://github.com/MozillaSecurity/prefpicker-monitor.git | |
| python -m prefmonitor --log-level DEBUG --token ${{ secrets.GITHUB_TOKEN }} |