@@ -94,26 +94,26 @@ jobs:
9494 - name : Create Issue on Failure
9595 uses : actions/github-script@v7
9696 with :
97- script : |
98- const title = `End to End Test Failed - ${new Date().toISOString().split('T')[0]}`;
99- const body = `
100- The daily end to end test workflow has failed. This means users may be experiencing issues installing the Symfony Demo application.
101-
102- **Failed Jobs:**
103- - Check the workflow run for details: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
104-
105- **Installation Methods Tested:**
106- - Symfony CLI installation
107- - Composer create-project
108- - Git clone + composer install
109-
110- Please investigate and fix the installation issues as soon as possible.
111- `;
112-
113- github.rest.issues.create({
114- owner: context.repo.owner,
115- repo: context.repo.repo,
116- title: title,
117- body: body,
118- labels: ['bug']
119- });
97+ script : |
98+ const title = `End to End Test Failed - ${new Date().toISOString().split('T')[0]}`;
99+ const body = `
100+ The daily end to end test workflow has failed. This means users may be experiencing issues installing the Symfony Demo application.
101+
102+ **Failed Jobs:**
103+ - Check the workflow run for details: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
104+
105+ **Installation Methods Tested:**
106+ - Symfony CLI installation
107+ - Composer create-project
108+ - Git clone + composer install
109+
110+ Please investigate and fix the installation issues as soon as possible.
111+ `;
112+
113+ github.rest.issues.create({
114+ owner: context.repo.owner,
115+ repo: context.repo.repo,
116+ title: title,
117+ body: body,
118+ labels: ['bug']
119+ });
0 commit comments