Skip to content
Open
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/made-for-esphome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# Check pull request does not already have `made-for-esphome` label
- name: Check for existing label
id: check-label
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
with:
script: |
const labels = context.payload.pull_request.labels.map(label => label.name);
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Check for made-for-esphome
id: check-made-for-esphome
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
with:
script: |
// Get the base branch from the pull request
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v5
- name: Update Pull Request
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
with:
script: |
const pr = context.payload.pull_request;
Expand Down