├── .github ├── FUNDING.yml └── _workflows │ └── bot.yml ├── LICENSE ├── README.md ├── images ├── 1.png ├── 2.png └── 3.png ├── requirements.txt ├── script_local.py └── script_remote.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/_workflows/bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/.github/_workflows/bot.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/README.md -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/images/3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /script_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/script_local.py -------------------------------------------------------------------------------- /script_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/actions-bot/HEAD/script_remote.py --------------------------------------------------------------------------------