diff --git a/README.md b/README.md index d8300ef..8691d50 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you create child issue from parent issue, the parent field is copied to the c ```yaml with: - # Repository name with owner. For example, kudoas/gis + # Repository name with owner. For example, kudoas/sync-issue-field # Default: ${{ github.repository }} repository: "" @@ -29,7 +29,7 @@ with: Create a [workflow](https://docs.github.com/en/actions/using-workflows) and save it as a `.yml` file in the `.github/workflows/` directory of your target repository. ```yml -name: Sync issue +name: Sync issue field on: issues: types: [opened] @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Sync issue field - uses: kudoas/sync-issue@main + uses: kudoas/sync-issue-field@main with: token: ${{ secrets.GITHUB_TOKEN }} ```