version: '3' tasks: move-to-production: desc: Move the current branch to production cmds: - cmd: git tag -d production ignore_error: false silent: true - cmd: git push origin :production ignore_error: false silent: true - cmd: git tag production ignore_error: false silent: true - cmd: git push origin production ignore_error: false silent: true lint: desc: Run all available linters. This mimics any checks performed in Pull Request pre-merge checks cmd: golangci-lint run -c .github/golangci-lint.yaml env: GOWORK: off