├── .github ├── release.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── package.json ├── src ├── main.ts └── tag.ts ├── tsconfig.json └── yarn.lock /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/action.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/src/tag.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgdeps/git-tag-action/HEAD/yarn.lock --------------------------------------------------------------------------------