From 25d1528e28cbf5c40d7b3963ba3ae4a3d45696d4 Mon Sep 17 00:00:00 2001 From: tmxk2021 <90445826+tmxk2021@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:58:36 +0800 Subject: [PATCH] Create blank.yml --- .github/workflows/blank.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..551ba2d --- /dev/null +++ b/.github/workflows/blank.yml @@ -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