GoTgramBot #617
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: GoTgramBot | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
name: GoTGramBot | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: > | |
pip install --upgrade pip setuptools wheel | |
pip install -r scripts/requirements.txt | |
- name: Generate go files | |
run: python scripts/build.py | |
- name: Open Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: > | |
Generated methods and types for GoTGramBot | |
title: > | |
Updated Methods and types for the lib | |
body: > | |
This is an automated PR. | |
branch: automated-build | |
reviewers: Anandpskerala | |
assignees: Anandpskerala | |
labels: automated | |
delete-branch: true |