2.0.0 release (#8)

* Upgrading action to JS Action

* Swapping to double-quotes for strings

* Switching parcel bundle to target node

* Updating docs
This commit is contained in:
Benjamin Lannon 2019-08-25 21:51:08 -04:00 committed by GitHub
commit 56bf52020f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 7752 additions and 169 deletions

View file

@ -18,9 +18,10 @@ If a label doesn't need a description, leave out the `description` field of the
This action only needs the GITHUB_TOKEN secret as it interacts with the GitHub API to modify labels. The action can be used as such:
```hcl
action "Update Label" {
uses = "lannonbr/issue-label-manager-action@master"
secrets = ["GITHUB_TOKEN"]
}
```yaml
steps:
- name: "Check & Modify Labels"
uses: lannonbr/issue-label-manager-action@2.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```