Skip to content

Commit

Permalink
Update converter.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Surfboardv2ray authored Jun 9, 2024
1 parent d8a0479 commit 99dc79b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/converter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ jobs:
run: |
python StarStruck/address_rename.py
- name: Push Renamed
if: steps.changesRenamed.outputs.changed == 'true'
- name: Check for Renamed Base64 Changes
id: changesRenamed
run: |
git diff --quiet && echo 'No changes' || echo '::set-output name=changed::true'
- name: Commit and Push Renamed Base64
if: steps.changesRenamed.outputs.changed == 'true'
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
Expand All @@ -63,5 +67,6 @@ jobs:
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add StarStruck/Star64
git commit -m "Update Subscription"
timestamp=$(TZ='Asia/Tehran' date)
git commit -m "✅Updated on ${timestamp}"
git push

0 comments on commit 99dc79b

Please sign in to comment.