From 101c3f651ac14163e32bea45317875c2855cb4d0 Mon Sep 17 00:00:00 2001 From: Benjamin Lannon Date: Sun, 25 Aug 2019 21:46:43 -0400 Subject: [PATCH] Updating docs --- LICENSE | 2 +- README.md | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index e99bb47..76824d0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2018 Benjamin Lannnon +Copyright 2018-2019 Benjamin Lannnon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software diff --git a/README.md b/README.md index 192ad35..09d261c 100644 --- a/README.md +++ b/README.md @@ -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 }} ```