Create blank.yml

This commit is contained in:
tmxk2021
2024-12-20 13:58:36 +08:00
committed by GitHub
parent 12f8da544b
commit 25d1528e28

24
.github/workflows/blank.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Add execute permission
on:
push:
paths:
- setup_hkdvb.sh
jobs:
add-permission:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Add execute permission
run: chmod +x setup_hkdvb.sh
- name: Commit changes
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git add setup_hkdvb.sh
git commit -m "Add execute permission to setup_hkdvb.sh"
git push