Update swiss-weather-api to 2.2.2 #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will triage pull requests and apply a label based on the | |
# paths that are modified in the pull request. | |
name: New at LATEST PR Info | |
# | |
# WARNING: | |
# ** Do NOT run untrusted code when using pull_request_target ** | |
# pull_request_target is needed as pull_request does not provide secrets and so no | |
# labeling of PR is possible. | |
# | |
on: | |
pull_request_target: | |
types: [labeled, unlabeled] | |
jobs: | |
stableBrandNewInfo: | |
name: new at latest PR info | |
if: | | |
github.repository == 'ioBroker/ioBroker.repositories' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm i | |
- run: npm run newAtLatestPrInfo | |
env: | |
OWN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |