1
0
mirror of https://github.com/lework/jenkins-update-center.git synced 2024-11-21 10:05:55 +02:00
jenkins-update-center/.github/workflows/generator.yml

40 lines
912 B
YAML
Raw Normal View History

2020-03-05 06:23:50 +02:00
name: generator
on:
schedule:
- cron: '0 1 * * *'
2020-08-31 10:47:05 +02:00
workflow_dispatch:
2020-03-05 06:23:50 +02:00
jobs:
check:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
2023-05-30 11:21:20 +02:00
pip install -r requirements.txt
2020-03-05 06:23:50 +02:00
- name: Run script
run: |
python generator.py
- name: Push
2022-04-18 03:07:29 +02:00
uses: github-actions-x/commit@v2.9
2020-03-05 06:23:50 +02:00
with:
2022-12-08 11:47:17 +02:00
github-token: ${{ secrets.GITHUB_TOKEN }}
2020-03-05 06:23:50 +02:00
push-branch: 'master'
commit-message: 'This is an github action commit.'
2022-04-23 04:01:01 +02:00
name: lework
email: lework@yeah.net
2020-03-05 06:23:50 +02:00
force-add: 'true'
2022-04-18 03:31:37 +02:00
force-push: 'true'