Action to increment a repository variable. Useful for increasing a version number for example.
It also supports alphanumeric variables, for example ABC1 will be increased to ABC2.
If the target variable does not exist, it will be automaticly created.
If you want to increment by another amount than the default (1), you can set the amount parameter.
uses: action-pack/increment@v2
with:
name: 'MY_VARIABLE'
token: ${{ secrets.REPO_ACCESS_TOKEN }}Required String Variable name.
Optional Integer Increment by this amount (default = 1).
Required String Repository Access token
Optional String Owners name.
Optional String Repository name.
Optional Boolean Indicates the repo is an organization.
-
This will happen if you use
secrets.GITHUB_TOKEN.You need to create a personal access token instead.
Go to your Github settings, select 'Developer settings' --> 'Personal access tokens' --> 'Tokens (classic)' and create a new token. Store its value in a secret, for example
MY_TOKEN.Then refer to it like this:
token: ${{ secrets.MY_TOKEN }}