Skip to content

Commit e5275f5

Browse files
Fix string formatting for issue body in workflow
1 parent 8333d35 commit e5275f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pagerduty-resolve-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: |
1616
import os
1717
18-
body = "${{ github.event.issue.body }}"
18+
body = """${{ github.event.issue.body }}"""
1919
output_file = os.getenv("GITHUB_OUTPUT")
2020

2121
incident_match = re.search(r'/incidents/([A-Z0-9]+)', body)

0 commit comments

Comments
 (0)