Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/labeler
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: fluzzi/labeler
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on Feb 14, 2020

  1. update

    fluzzi committed Feb 14, 2020
    Copy the full SHA
    9883f80 View commit details

Commits on Feb 17, 2020

  1. fix

    fluzzi committed Feb 17, 2020
    Copy the full SHA
    5a9a78c View commit details
  2. update

    fluzzi committed Feb 17, 2020
    Copy the full SHA
    a3d120c View commit details
  3. Update action.yml

    fluzzi authored Feb 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5521af8 View commit details
Showing with 3 additions and 2 deletions.
  1. +2 −2 action.yml
  2. +1 −0 src/main.ts
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'Pull Request Labeler'
name: 'My personal labeler'
description: 'Add labels to new pull requests based on the files that are changed'
author: 'GitHub'
author: 'fluzzi'
inputs:
repo-token:
description: 'The GITHUB_TOKEN secret'
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@ async function run() {
core.debug(`processing ${label}`);
if (checkGlobs(changedFiles, globs)) {
labels.push(label);
return
}
}