Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-copilot-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- name: Check for existing issues
id: issue-check
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: issues } = await github.rest.issues.listForRepo({
Expand All @@ -101,7 +101,7 @@ jobs:

- name: Create initial setup issue
if: steps.version-check.outputs.setup_needed == 'true' && steps.issue-check.outputs.has_existing_issue == 'false'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const title = '🤖 Setup ioBroker GitHub Copilot Instructions';
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:

- name: Create update issue
if: steps.version-check.outputs.update_needed == 'true' && steps.issue-check.outputs.has_existing_issue == 'false'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const title = '🤖 Update ioBroker Copilot Instructions Template';
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Create setup issue
if: steps.check-copilot.outputs.exists == 'false'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const templateUrl = 'https://raw.githubusercontent.com/DrozmotiX/ioBroker-Copilot-Instructions/main/templates/initial-setup-automation.md';
Expand Down
Loading