MERGE SUBSCRIPTION #525
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: "MERGE SUBSCRIPTION" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '50 11 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
- name: Execute PHP script | |
run: | | |
php index.php | |
git config --global user.email "sayhernameagain@gmail.com" | |
git config --global user.name "sarinaesmailzadeh" | |
git config credential.helper store | |
git add -A | |
git commit -m "🚀 Merged Successfully - $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M:%S')" | |
git push |