Skip to content

Commit 70f5b12

Browse files
🩹 [Patch]: Fix path separator in action.yml for script execution (#9)
## Description This pull request includes a small change to the `action.yml` file. The change corrects the file path for the `main.ps1` script to use forward slashes instead of backslashes. * `action.yml`: * Updated the script path from `${{ github.action_path }}\scripts\main.ps1` to `${{ github.action_path }}/scripts/main.ps1`. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent e99a9e8 commit 70f5b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ runs:
2828
ShowOutput: true
2929
Script: |
3030
# Get-IssueFormData
31-
${{ github.action_path }}\scripts\main.ps1
31+
${{ github.action_path }}/scripts/main.ps1

0 commit comments

Comments
 (0)