Bump Microsoft.Identity.Client from 4.48.1 to 4.61.3 in /CacheSpToken #6
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 labels. | |
# 'Do Not Squash :no_entry_sign:' will be added if the base branch is not master | |
name: Labeler | |
on: pull_request | |
jobs: | |
label: | |
name: 'Add label' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Add do not squash label ' | |
uses: actions/[email protected] | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.pulls | |
.get({ | |
owner: context.repo.owner, | |
number: context.issue.number, | |
repo: context.repo.repo, | |
}) | |
.then((pr) => { | |
if (pr.data.base.ref !== 'master') { | |
github.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['Do Not Squash :no_entry_sign:'], | |
}); | |
} | |
}) |