-
Notifications
You must be signed in to change notification settings - Fork 9
executable file
·46 lines (38 loc) · 1.29 KB
/
post-bot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Rom Poster Bot
on:
push:
paths-ignore:
- '.github/scripts/file_ids.txt'
- 'README.md'
workflow_dispatch:
env:
GitHubMail: "droidxuibot@gmail.com"
GitHubName: "TheDroidxBot"
GitHubToken: ${{ secrets.GH_TOKEN }}
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
CHAT_ID: ${{ secrets.CHAT_ID }}
PRIV_CHAT_ID: ${{ secrets.PRIV_CHAT_ID }}
DROID_VERSION_CHECK: ${{ secrets.DROID_VERSION_CHECK }}
jobs:
post:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo pip install pyTelegramBotAPI noobstuffs
- name: Set Git Configs & Secrets
run: |
git config --global user.email ${GitHubMail}
git config --global user.name ${GitHubName}
git config --global color.ui true
git config --global credential.helper store
echo "https://${GitHubName}:${GitHubToken}@github.com" > ~/.git-credentials
- name: Run RomPosterBot
run: sudo -E python3 .github/scripts/post.py
- name: Commit and Push Changes
run: |
git fetch && git pull
COMMIT_MESSAGE=$(cat commit_mesg.txt)
rm commit_mesg.txt
git add . && git commit -sm "$COMMIT_MESSAGE"
git push origin