mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* CI: Modernize actions/checkout * CI: Modernize actions/stale * CI: Modernize softprops/action-gh-release * CI: Modernize microsoft/setup-msbuild * CI: Modernize gradle/actions/setup-gradle * CI: Modernize actions/setup-dotnet * CI: Modernize actions/setup-java * CI: Modernize jiro4989/setup-nim-action * CI: Update to latest image seems to be fixed The readme list swift now for 24.04 * CI: Update to latest actions/labeler tag instead of sha
25 lines
567 B
YAML
25 lines
567 B
YAML
# This workflow will triage pull requests and apply a label based on the
|
|
# paths that are modified in the pull request.
|
|
#
|
|
# To use this workflow, you will need to set up a .github/labeler.yml
|
|
# file with configuration. For more information, see:
|
|
# https://github.com/actions/labeler
|
|
|
|
name: Labeler
|
|
permissions: read-all
|
|
|
|
on: [pull_request_target]
|
|
|
|
jobs:
|
|
label:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/labeler@6
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|