Bump mocha from 11.0.2 to 11.1.0 #134
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
# Copyright (C) 2019-2025 | |
# Julian Valentin, Daniel Spitzer, LTeX+ Development Community | |
# | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
name: "Label Commenter" | |
on: | |
issues: | |
types: | |
- "labeled" | |
- "unlabeled" | |
pull_request_target: | |
types: | |
- "labeled" | |
- "unlabeled" | |
jobs: | |
comment: | |
name: "Label Commenter Job" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
ref: "develop" | |
- name: "Run Label Commenter" | |
uses: "peaceiris/actions-label-commenter@v1.10.0" | |
with: | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
config_file: ".github/label-commenter-config.yml" |