telegram github open projects report #46
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: telegram github open projects report | |
| on: | |
| schedule: | |
| - cron: "0 13 15 * *" | |
| jobs: | |
| build: | |
| defaults: | |
| run: | |
| working-directory: ./.github/workflows/report_open_projects | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: get contribution report | |
| shell: bash | |
| run: | | |
| ./get_open_projects.sh > open_projects_message | |
| - name: send open projects report to osscameroon channel | |
| uses: appleboy/telegram-action@v1.0.1 | |
| with: | |
| to: ${{ secrets.TELEGRAM_OSSCAMEROON_CHANNEL_ID }} | |
| token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
| format: MarkdownV2 | |
| message_file: ./.github/workflows/report_open_projects/open_projects_message | |
| - name: send open projects report to osscameroon group | |
| uses: appleboy/telegram-action@v1.0.1 | |
| with: | |
| to: ${{ secrets.TELEGRAM_OSSCAMEROON_GROUP_ID }} | |
| token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
| format: MarkdownV2 | |
| message_file: ./.github/workflows/report_open_projects/open_projects_message |