Code Monkey home page Code Monkey logo

Comments (7)

jvinters avatar jvinters commented on June 15, 2024 2

Ok, you should add that to the readme.

from conventional-changelog-action.

TriPSs avatar TriPSs commented on June 15, 2024 1

Thanks for sharing, this action does not work on PR's.

from conventional-changelog-action.

TriPSs avatar TriPSs commented on June 15, 2024

Hi, what sample are you using?

This is what is described in the readme if you want it with github releases:

- name: Conventional Changelog Action
  id: changelog
  uses: TriPSs/conventional-changelog-action@v3
  with:
    github-token: ${{ secrets.github_token }}

- name: Create Release
  uses: actions/create-release@v1
  if: ${{ steps.changelog.outputs.skipped == 'false' }}
  env:
    GITHUB_TOKEN: ${{ secrets.github_token }}
  with:
    tag_name: ${{ steps.changelog.outputs.tag }}
    release_name: ${{ steps.changelog.outputs.tag }}
    body: ${{ steps.changelog.outputs.clean_changelog }}

I'm also not sure if you use checkout with a ref if that is going to work so I would recommend:

      - name: Checkout code
        uses: actions/checkout@v2

from conventional-changelog-action.

jvinters avatar jvinters commented on June 15, 2024

Ah right, I had the same issue using the above so I added the ref. I just changed it back to your recommendation and getting the same error output.

from conventional-changelog-action.

TriPSs avatar TriPSs commented on June 15, 2024

Can you share the full workflow? And the full logs.

from conventional-changelog-action.

jvinters avatar jvinters commented on June 15, 2024

Sure.

Here's the workflow

name: ci/build

env:
  CONFIGURATION_TARGET: development

on:
  pull_request:
    types: [created, synchronize]
    branches: [ master, release ]
    paths-ignore:
      - 'CHANGELOG.md'

jobs:
  commit-lint:
    
    runs-on: ubuntu-latest
    steps:
      # Checkout code
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      
      # Lint
      - uses: wagoid/commitlint-github-action@v2
        with:
          configFile: .github/commitlint.config.js
  
  build:
    needs: [commit-lint]
    runs-on: ubuntu-latest
    steps:
      
      # Checkout code
      - uses: actions/checkout@v2
        
      # Set environment
      - name: Set enviroment for branch
        run : |
         if [[ "${{github.base_ref}}" == "master" || "${{github.ref}}" == "refs/heads/master" ]]; then
          echo "CONFIGURATION_TARGET=development" >> "$GITHUB_ENV"
         fi
         if [[ "${{github.base_ref}}" == "release" || "${{github.ref}}" == "refs/heads/release" ]]; then
          echo "CONFIGURATION_TARGET=production" >> "$GITHUB_ENV"
         fi
         
      # Setup Node
      - name: Install node.js
        uses: actions/[email protected]
      
      # Cache the node modules  
      - name: Use Cache
        uses: actions/[email protected]
        with: 
          path: |
            ~/cache
            !~/cache/exclude
            **/node_modules
          key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
      
      # Install project dependencies
      - name: Install Dependencies
        run: npm install
    
      # Build angular project
      - name: Build project
        run: npm run build --aot=true --configuration=$CONFIGURATION_TARGET
      
      # Execute unit tests
      
      # Archive the dist artifact
      #- name: Archive
      #  uses: actions/upload-artifact@v2
      #  with:
      #    name: dist-without-markdown
      #    path: |
      #      dist
      #      !dist/**/*.md
  
  release:
    needs: build
    runs-on: ubuntu-latest
    steps:
      # Checkout code
      - name: Checkout code
        uses: actions/checkout@v2
        
      # Create a changelog
      - name: Create Changelog
        id: changelog
        uses: TriPSs/conventional-changelog-action@v3
        with:
         github-token: ${{ secrets.GITHUB_TOKEN  }}
          
      # Create a release
      - name: Create Release
        uses: actions/create-release@v1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN  }}
        with:
          tag_name: ${{ steps.changelog.outputs.tag }}
          release_name: ${{ steps.changelog.outputs.tag }}
          body: ${{ steps.changelog.outputs.clean_changelog }}

Output log for the "release" job

2020-12-18T15:47:40.4702984Z ##[section]Starting: Request a runner to run this job
2020-12-18T15:47:40.6741855Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2020-12-18T15:47:40.6741994Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-12-18T15:47:40.6742351Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-12-18T15:47:40.8525016Z ##[section]Finishing: Request a runner to run this job
2020-12-18T15:47:50.7386557Z Current runner version: '2.275.1'
2020-12-18T15:47:50.7414849Z ##[group]Operating System
2020-12-18T15:47:50.7415852Z Ubuntu
2020-12-18T15:47:50.7416243Z 18.04.5
2020-12-18T15:47:50.7416641Z LTS
2020-12-18T15:47:50.7417035Z ##[endgroup]
2020-12-18T15:47:50.7417835Z ##[group]Virtual Environment
2020-12-18T15:47:50.7418446Z Environment: ubuntu-18.04
2020-12-18T15:47:50.7418991Z Version: 20201210.0
2020-12-18T15:47:50.7420031Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20201210.0/images/linux/Ubuntu1804-README.md
2020-12-18T15:47:50.7421004Z ##[endgroup]
2020-12-18T15:47:50.7424595Z Prepare workflow directory
2020-12-18T15:47:50.8195978Z Prepare all required actions
2020-12-18T15:47:50.8205340Z Getting action download info
2020-12-18T15:47:51.0342801Z Download action repository 'actions/checkout@v2'
2020-12-18T15:47:53.3257895Z Download action repository 'TriPSs/conventional-changelog-action@v3'
2020-12-18T15:47:54.8693849Z Download action repository 'actions/create-release@v1'
2020-12-18T15:47:55.1658636Z ##[group]Run actions/checkout@v2
2020-12-18T15:47:55.1659214Z with:
2020-12-18T15:47:55.1659909Z   repository: acme/acme.angular-app
2020-12-18T15:47:55.1661016Z   token: ***
2020-12-18T15:47:55.1661738Z   ssh-strict: true
2020-12-18T15:47:55.1662272Z   persist-credentials: true
2020-12-18T15:47:55.1662769Z   clean: true
2020-12-18T15:47:55.1663186Z   fetch-depth: 1
2020-12-18T15:47:55.1663583Z   lfs: false
2020-12-18T15:47:55.1663992Z   submodules: false
2020-12-18T15:47:55.1664375Z env:
2020-12-18T15:47:55.1664873Z   CONFIGURATION_TARGET: development
2020-12-18T15:47:55.1665389Z ##[endgroup]
2020-12-18T15:47:55.6121184Z Syncing repository: acme/acme.angular-app
2020-12-18T15:47:55.6132992Z ##[group]Getting Git version info
2020-12-18T15:47:55.6134590Z Working directory is '/home/runner/work/acme.angular-app/acme.angular-app'
2020-12-18T15:47:55.6179215Z [command]/usr/bin/git version
2020-12-18T15:47:55.6521267Z git version 2.29.2
2020-12-18T15:47:55.6552088Z ##[endgroup]
2020-12-18T15:47:55.6562426Z Deleting the contents of '/home/runner/work/acme.angular-app/acme.angular-app'
2020-12-18T15:47:55.6569397Z ##[group]Initializing the repository
2020-12-18T15:47:55.6577445Z [command]/usr/bin/git init /home/runner/work/acme.angular-app/acme.angular-app
2020-12-18T15:47:55.6672590Z Initialized empty Git repository in /home/runner/work/acme.angular-app/acme.angular-app/.git/
2020-12-18T15:47:55.6685423Z [command]/usr/bin/git remote add origin https://github.com/acme/acme.angular-app
2020-12-18T15:47:55.6748929Z ##[endgroup]
2020-12-18T15:47:55.6750035Z ##[group]Disabling automatic garbage collection
2020-12-18T15:47:55.6751319Z [command]/usr/bin/git config --local gc.auto 0
2020-12-18T15:47:55.6786319Z ##[endgroup]
2020-12-18T15:47:55.6806533Z ##[group]Setting up auth
2020-12-18T15:47:55.6807793Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2020-12-18T15:47:55.6841820Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-12-18T15:47:55.7285927Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-12-18T15:47:55.7328939Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-12-18T15:47:55.7609185Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2020-12-18T15:47:55.7664492Z ##[endgroup]
2020-12-18T15:47:55.7665441Z ##[group]Fetching the repository
2020-12-18T15:47:55.7673809Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +a9b5e42d36f8e00d66bc9da1db39861d995e708c:refs/remotes/pull/91/merge
2020-12-18T15:47:56.0878783Z remote: Enumerating objects: 805, done.        
2020-12-18T15:47:56.0947026Z remote: Counting objects:   0% (1/805)        
2020-12-18T15:47:56.0948271Z remote: Counting objects:   1% (9/805)        
2020-12-18T15:47:56.0949246Z remote: Counting objects:   2% (17/805)        
2020-12-18T15:47:56.0951489Z remote: Counting objects:   3% (25/805)        
2020-12-18T15:47:56.0952461Z remote: Counting objects:   4% (33/805)        
2020-12-18T15:47:56.0954600Z remote: Counting objects:   5% (41/805)        
2020-12-18T15:47:56.0955110Z remote: Counting objects:   6% (49/805)        
2020-12-18T15:47:56.0955830Z remote: Counting objects:   7% (57/805)        
2020-12-18T15:47:56.0956356Z remote: Counting objects:   8% (65/805)        
2020-12-18T15:47:56.0956856Z remote: Counting objects:   9% (73/805)        
2020-12-18T15:47:56.0957372Z remote: Counting objects:  10% (81/805)        
2020-12-18T15:47:56.0958186Z remote: Counting objects:  11% (89/805)        
2020-12-18T15:47:56.0958725Z remote: Counting objects:  12% (97/805)        
2020-12-18T15:47:56.0959233Z remote: Counting objects:  13% (105/805)        
2020-12-18T15:47:56.0959752Z remote: Counting objects:  14% (113/805)        
2020-12-18T15:47:56.0960259Z remote: Counting objects:  15% (121/805)        
2020-12-18T15:47:56.0960762Z remote: Counting objects:  16% (129/805)        
2020-12-18T15:47:56.0961278Z remote: Counting objects:  17% (137/805)        
2020-12-18T15:47:56.0961982Z remote: Counting objects:  18% (145/805)        
2020-12-18T15:47:56.0962539Z remote: Counting objects:  19% (153/805)        
2020-12-18T15:47:56.0963079Z remote: Counting objects:  20% (161/805)        
2020-12-18T15:47:56.0963630Z remote: Counting objects:  21% (170/805)        
2020-12-18T15:47:56.0964174Z remote: Counting objects:  22% (178/805)        
2020-12-18T15:47:56.0964724Z remote: Counting objects:  23% (186/805)        
2020-12-18T15:47:56.0965267Z remote: Counting objects:  24% (194/805)        
2020-12-18T15:47:56.0965808Z remote: Counting objects:  25% (202/805)        
2020-12-18T15:47:56.0966361Z remote: Counting objects:  26% (210/805)        
2020-12-18T15:47:56.0966896Z remote: Counting objects:  27% (218/805)        
2020-12-18T15:47:56.0967453Z remote: Counting objects:  28% (226/805)        
2020-12-18T15:47:56.0967995Z remote: Counting objects:  29% (234/805)        
2020-12-18T15:47:56.0968545Z remote: Counting objects:  30% (242/805)        
2020-12-18T15:47:56.0969086Z remote: Counting objects:  31% (250/805)        
2020-12-18T15:47:56.0969763Z remote: Counting objects:  32% (258/805)        
2020-12-18T15:47:56.0970303Z remote: Counting objects:  33% (266/805)        
2020-12-18T15:47:56.0970857Z remote: Counting objects:  34% (274/805)        
2020-12-18T15:47:56.0971402Z remote: Counting objects:  35% (282/805)        
2020-12-18T15:47:56.0971940Z remote: Counting objects:  36% (290/805)        
2020-12-18T15:47:56.0972499Z remote: Counting objects:  37% (298/805)        
2020-12-18T15:47:56.0973040Z remote: Counting objects:  38% (306/805)        
2020-12-18T15:47:56.0973593Z remote: Counting objects:  39% (314/805)        
2020-12-18T15:47:56.0974345Z remote: Counting objects:  40% (322/805)        
2020-12-18T15:47:56.0974901Z remote: Counting objects:  41% (331/805)        
2020-12-18T15:47:56.0975438Z remote: Counting objects:  42% (339/805)        
2020-12-18T15:47:56.0975992Z remote: Counting objects:  43% (347/805)        
2020-12-18T15:47:56.0976531Z remote: Counting objects:  44% (355/805)        
2020-12-18T15:47:56.0977070Z remote: Counting objects:  45% (363/805)        
2020-12-18T15:47:56.0977624Z remote: Counting objects:  46% (371/805)        
2020-12-18T15:47:56.0978160Z remote: Counting objects:  47% (379/805)        
2020-12-18T15:47:56.0978715Z remote: Counting objects:  48% (387/805)        
2020-12-18T15:47:56.0979257Z remote: Counting objects:  49% (395/805)        
2020-12-18T15:47:56.0979817Z remote: Counting objects:  50% (403/805)        
2020-12-18T15:47:56.0980507Z remote: Counting objects:  51% (411/805)        
2020-12-18T15:47:56.0981058Z remote: Counting objects:  52% (419/805)        
2020-12-18T15:47:56.0981763Z remote: Counting objects:  53% (427/805)        
2020-12-18T15:47:56.0983468Z remote: Counting objects:  54% (435/805)        
2020-12-18T15:47:56.0984585Z remote: Counting objects:  55% (443/805)        
2020-12-18T15:47:56.0985130Z remote: Counting objects:  56% (451/805)        
2020-12-18T15:47:56.0985690Z remote: Counting objects:  57% (459/805)        
2020-12-18T15:47:56.0986232Z remote: Counting objects:  58% (467/805)        
2020-12-18T15:47:56.0986789Z remote: Counting objects:  59% (475/805)        
2020-12-18T15:47:56.0987332Z remote: Counting objects:  60% (483/805)        
2020-12-18T15:47:56.0988101Z remote: Counting objects:  61% (492/805)        
2020-12-18T15:47:56.0988642Z remote: Counting objects:  62% (500/805)        
2020-12-18T15:47:56.0989180Z remote: Counting objects:  63% (508/805)        
2020-12-18T15:47:56.0989870Z remote: Counting objects:  64% (516/805)        
2020-12-18T15:47:56.0990419Z remote: Counting objects:  65% (524/805)        
2020-12-18T15:47:56.0990970Z remote: Counting objects:  66% (532/805)        
2020-12-18T15:47:56.7799476Z remote: Counting objects:  67% (540/805)        
2020-12-18T15:47:56.7803336Z remote: Counting objects:  68% (548/805)        
2020-12-18T15:47:56.7804979Z remote: Counting objects:  69% (556/805)        
2020-12-18T15:47:56.7806181Z remote: Counting objects:  70% (564/805)        
2020-12-18T15:47:56.7807142Z remote: Counting objects:  71% (572/805)        
2020-12-18T15:47:56.7808128Z remote: Counting objects:  72% (580/805)        
2020-12-18T15:47:56.7809077Z remote: Counting objects:  73% (588/805)        
2020-12-18T15:47:56.7810040Z remote: Counting objects:  74% (596/805)        
2020-12-18T15:47:56.7810994Z remote: Counting objects:  75% (604/805)        
2020-12-18T15:47:56.7811952Z remote: Counting objects:  76% (612/805)        
2020-12-18T15:47:56.7812984Z remote: Counting objects:  77% (620/805)        
2020-12-18T15:47:56.7813945Z remote: Counting objects:  78% (628/805)        
2020-12-18T15:47:56.7814915Z remote: Counting objects:  79% (636/805)        
2020-12-18T15:47:56.7815864Z remote: Counting objects:  80% (644/805)        
2020-12-18T15:47:56.7817008Z remote: Counting objects:  81% (653/805)        
2020-12-18T15:47:56.7817968Z remote: Counting objects:  82% (661/805)        
2020-12-18T15:47:56.7818931Z remote: Counting objects:  83% (669/805)        
2020-12-18T15:47:56.7819892Z remote: Counting objects:  84% (677/805)        
2020-12-18T15:47:56.7820859Z remote: Counting objects:  85% (685/805)        
2020-12-18T15:47:56.7822259Z remote: Counting objects:  86% (693/805)        
2020-12-18T15:47:56.7823219Z remote: Counting objects:  87% (701/805)        
2020-12-18T15:47:56.7824196Z remote: Counting objects:  88% (709/805)        
2020-12-18T15:47:56.7825148Z remote: Counting objects:  89% (717/805)        
2020-12-18T15:47:56.7826141Z remote: Counting objects:  90% (725/805)        
2020-12-18T15:47:56.7827093Z remote: Counting objects:  91% (733/805)        
2020-12-18T15:47:56.7828055Z remote: Counting objects:  92% (741/805)        
2020-12-18T15:47:56.7829004Z remote: Counting objects:  93% (749/805)        
2020-12-18T15:47:56.7829970Z remote: Counting objects:  94% (757/805)        
2020-12-18T15:47:56.7830917Z remote: Counting objects:  95% (765/805)        
2020-12-18T15:47:56.7831869Z remote: Counting objects:  96% (773/805)        
2020-12-18T15:47:56.7832831Z remote: Counting objects:  97% (781/805)        
2020-12-18T15:47:56.7833784Z remote: Counting objects:  98% (789/805)        
2020-12-18T15:47:56.7834742Z remote: Counting objects:  99% (797/805)        
2020-12-18T15:47:56.7835700Z remote: Counting objects: 100% (805/805)        
2020-12-18T15:47:56.7836715Z remote: Counting objects: 100% (805/805), done.        
2020-12-18T15:47:56.7837772Z remote: Compressing objects:   0% (1/732)        
2020-12-18T15:47:56.7839163Z remote: Compressing objects:   1% (8/732)        
2020-12-18T15:47:56.7840215Z remote: Compressing objects:   2% (15/732)        
2020-12-18T15:47:56.7841702Z remote: Compressing objects:   3% (22/732)        
2020-12-18T15:47:56.7842746Z remote: Compressing objects:   4% (30/732)        
2020-12-18T15:47:56.7843339Z remote: Compressing objects:   5% (37/732)        
2020-12-18T15:47:56.7843948Z remote: Compressing objects:   6% (44/732)        
2020-12-18T15:47:56.7844538Z remote: Compressing objects:   7% (52/732)        
2020-12-18T15:47:56.7845139Z remote: Compressing objects:   8% (59/732)        
2020-12-18T15:47:56.7845730Z remote: Compressing objects:   9% (66/732)        
2020-12-18T15:47:56.7846331Z remote: Compressing objects:  10% (74/732)        
2020-12-18T15:47:56.7846917Z remote: Compressing objects:  11% (81/732)        
2020-12-18T15:47:56.7847684Z remote: Compressing objects:  12% (88/732)        
2020-12-18T15:47:56.7848280Z remote: Compressing objects:  13% (96/732)        
2020-12-18T15:47:56.7848990Z remote: Compressing objects:  14% (103/732)        
2020-12-18T15:47:56.7849612Z remote: Compressing objects:  15% (110/732)        
2020-12-18T15:47:56.7850295Z remote: Compressing objects:  16% (118/732)        
2020-12-18T15:47:56.7850914Z remote: Compressing objects:  17% (125/732)        
2020-12-18T15:47:56.7851509Z remote: Compressing objects:  18% (132/732)        
2020-12-18T15:47:56.7852117Z remote: Compressing objects:  19% (140/732)        
2020-12-18T15:47:56.7852715Z remote: Compressing objects:  20% (147/732)        
2020-12-18T15:47:56.7853322Z remote: Compressing objects:  21% (154/732)        
2020-12-18T15:47:56.7853909Z remote: Compressing objects:  22% (162/732)        
2020-12-18T15:47:56.7854500Z remote: Compressing objects:  23% (169/732)        
2020-12-18T15:47:56.7855100Z remote: Compressing objects:  24% (176/732)        
2020-12-18T15:47:56.7855686Z remote: Compressing objects:  25% (183/732)        
2020-12-18T15:47:56.7856292Z remote: Compressing objects:  26% (191/732)        
2020-12-18T15:47:56.7856890Z remote: Compressing objects:  27% (198/732)        
2020-12-18T15:47:56.7857493Z remote: Compressing objects:  28% (205/732)        
2020-12-18T15:47:56.7858078Z remote: Compressing objects:  29% (213/732)        
2020-12-18T15:47:56.7858702Z remote: Compressing objects:  30% (220/732)        
2020-12-18T15:47:56.7859287Z remote: Compressing objects:  31% (227/732)        
2020-12-18T15:47:56.7859889Z remote: Compressing objects:  32% (235/732)        
2020-12-18T15:47:56.7860479Z remote: Compressing objects:  33% (242/732)        
2020-12-18T15:47:56.7861081Z remote: Compressing objects:  34% (249/732)        
2020-12-18T15:47:56.7861791Z remote: Compressing objects:  35% (257/732)        
2020-12-18T15:47:56.7862385Z remote: Compressing objects:  36% (264/732)        
2020-12-18T15:47:56.7869746Z remote: Compressing objects:  37% (271/732)        
2020-12-18T15:47:56.7870375Z remote: Compressing objects:  38% (279/732)        
2020-12-18T15:47:56.7872225Z remote: Compressing objects:  39% (286/732)        
2020-12-18T15:47:56.7872846Z remote: Compressing objects:  40% (293/732)        
2020-12-18T15:47:56.7873458Z remote: Compressing objects:  41% (301/732)        
2020-12-18T15:47:56.7874051Z remote: Compressing objects:  42% (308/732)        
2020-12-18T15:47:56.7874657Z remote: Compressing objects:  43% (315/732)        
2020-12-18T15:47:56.7875249Z remote: Compressing objects:  44% (323/732)        
2020-12-18T15:47:56.7876870Z remote: Compressing objects:  45% (330/732)        
2020-12-18T15:47:56.7877487Z remote: Compressing objects:  46% (337/732)        
2020-12-18T15:47:56.7878083Z remote: Compressing objects:  47% (345/732)        
2020-12-18T15:47:56.7878794Z remote: Compressing objects:  48% (352/732)        
2020-12-18T15:47:56.7879341Z remote: Compressing objects:  49% (359/732)        
2020-12-18T15:47:56.7879899Z remote: Compressing objects:  50% (366/732)        
2020-12-18T15:47:56.7880447Z remote: Compressing objects:  51% (374/732)        
2020-12-18T15:47:56.7881165Z remote: Compressing objects:  52% (381/732)        
2020-12-18T15:47:56.7881714Z remote: Compressing objects:  53% (388/732)        
2020-12-18T15:47:56.7882276Z remote: Compressing objects:  54% (396/732)        
2020-12-18T15:47:56.7882952Z remote: Compressing objects:  55% (403/732)        
2020-12-18T15:47:56.7883504Z remote: Compressing objects:  56% (410/732)        
2020-12-18T15:47:56.7884066Z remote: Compressing objects:  57% (418/732)        
2020-12-18T15:47:56.7884613Z remote: Compressing objects:  58% (425/732)        
2020-12-18T15:47:56.7885174Z remote: Compressing objects:  59% (432/732)        
2020-12-18T15:47:56.7885724Z remote: Compressing objects:  60% (440/732)        
2020-12-18T15:47:56.7886280Z remote: Compressing objects:  61% (447/732)        
2020-12-18T15:47:56.7886827Z remote: Compressing objects:  62% (454/732)        
2020-12-18T15:47:56.7887387Z remote: Compressing objects:  63% (462/732)        
2020-12-18T15:47:56.7888015Z remote: Compressing objects:  64% (469/732)        
2020-12-18T15:47:56.7888762Z remote: Compressing objects:  65% (476/732)        
2020-12-18T15:47:56.7889365Z remote: Compressing objects:  66% (484/732)        
2020-12-18T15:47:56.7889956Z remote: Compressing objects:  67% (491/732)        
2020-12-18T15:47:56.7890558Z remote: Compressing objects:  68% (498/732)        
2020-12-18T15:47:56.7891144Z remote: Compressing objects:  69% (506/732)        
2020-12-18T15:47:56.7891749Z remote: Compressing objects:  70% (513/732)        
2020-12-18T15:47:56.7892340Z remote: Compressing objects:  71% (520/732)        
2020-12-18T15:47:56.7892944Z remote: Compressing objects:  72% (528/732)        
2020-12-18T15:47:56.7893531Z remote: Compressing objects:  73% (535/732)        
2020-12-18T15:47:56.7894121Z remote: Compressing objects:  74% (542/732)        
2020-12-18T15:47:56.7894723Z remote: Compressing objects:  75% (549/732)        
2020-12-18T15:47:56.7895309Z remote: Compressing objects:  76% (557/732)        
2020-12-18T15:47:56.7895922Z remote: Compressing objects:  77% (564/732)        
2020-12-18T15:47:56.7897179Z remote: Compressing objects:  78% (571/732)        
2020-12-18T15:47:56.7897803Z remote: Compressing objects:  79% (579/732)        
2020-12-18T15:47:56.7898392Z remote: Compressing objects:  80% (586/732)        
2020-12-18T15:47:56.7898997Z remote: Compressing objects:  81% (593/732)        
2020-12-18T15:47:56.7899587Z remote: Compressing objects:  82% (601/732)        
2020-12-18T15:47:56.7900178Z remote: Compressing objects:  83% (608/732)        
2020-12-18T15:47:56.7900780Z remote: Compressing objects:  84% (615/732)        
2020-12-18T15:47:56.7901650Z remote: Compressing objects:  85% (623/732)        
2020-12-18T15:47:56.7902219Z remote: Compressing objects:  86% (630/732)        
2020-12-18T15:47:56.7902765Z remote: Compressing objects:  87% (637/732)        
2020-12-18T15:47:56.7903331Z remote: Compressing objects:  88% (645/732)        
2020-12-18T15:47:56.7903889Z remote: Compressing objects:  89% (652/732)        
2020-12-18T15:47:56.7904457Z remote: Compressing objects:  90% (659/732)        
2020-12-18T15:47:56.7905003Z remote: Compressing objects:  91% (667/732)        
2020-12-18T15:47:56.7905551Z remote: Compressing objects:  92% (674/732)        
2020-12-18T15:47:56.7906110Z remote: Compressing objects:  93% (681/732)        
2020-12-18T15:47:56.7906655Z remote: Compressing objects:  94% (689/732)        
2020-12-18T15:47:56.7907216Z remote: Compressing objects:  95% (696/732)        
2020-12-18T15:47:56.7907761Z remote: Compressing objects:  96% (703/732)        
2020-12-18T15:47:56.7908320Z remote: Compressing objects:  97% (711/732)        
2020-12-18T15:47:56.7908866Z remote: Compressing objects:  98% (718/732)        
2020-12-18T15:47:56.7909425Z remote: Compressing objects:  99% (725/732)        
2020-12-18T15:47:56.7909972Z remote: Compressing objects: 100% (732/732)        
2020-12-18T15:47:56.7910547Z remote: Compressing objects: 100% (732/732), done.        
2020-12-18T15:47:56.7911285Z Receiving objects:   0% (1/805)
2020-12-18T15:47:56.7911887Z Receiving objects:   1% (9/805)
2020-12-18T15:47:56.7912388Z Receiving objects:   2% (17/805)
2020-12-18T15:47:56.7912877Z Receiving objects:   3% (25/805)
2020-12-18T15:47:56.7913378Z Receiving objects:   4% (33/805)
2020-12-18T15:47:56.7913866Z Receiving objects:   5% (41/805)
2020-12-18T15:47:56.7914348Z Receiving objects:   6% (49/805)
2020-12-18T15:47:56.7914850Z Receiving objects:   7% (57/805)
2020-12-18T15:47:56.7915335Z Receiving objects:   8% (65/805)
2020-12-18T15:47:56.7915833Z Receiving objects:   9% (73/805)
2020-12-18T15:47:56.7916318Z Receiving objects:  10% (81/805)
2020-12-18T15:47:56.7916814Z Receiving objects:  11% (89/805)
2020-12-18T15:47:56.7917293Z Receiving objects:  12% (97/805)
2020-12-18T15:47:56.7917794Z Receiving objects:  13% (105/805)
2020-12-18T15:47:56.7918277Z Receiving objects:  14% (113/805)
2020-12-18T15:47:56.7918762Z Receiving objects:  15% (121/805)
2020-12-18T15:47:56.7919260Z Receiving objects:  16% (129/805)
2020-12-18T15:47:56.7919812Z Receiving objects:  17% (137/805)
2020-12-18T15:47:56.7920314Z Receiving objects:  18% (145/805)
2020-12-18T15:47:56.7920796Z Receiving objects:  19% (153/805)
2020-12-18T15:47:56.7921293Z Receiving objects:  20% (161/805)
2020-12-18T15:47:56.7921779Z Receiving objects:  21% (170/805)
2020-12-18T15:47:56.7922263Z Receiving objects:  22% (178/805)
2020-12-18T15:47:56.7922763Z Receiving objects:  23% (186/805)
2020-12-18T15:47:56.7923243Z Receiving objects:  24% (194/805)
2020-12-18T15:47:56.7923737Z Receiving objects:  25% (202/805)
2020-12-18T15:47:56.7924219Z Receiving objects:  26% (210/805)
2020-12-18T15:47:56.7924720Z Receiving objects:  27% (218/805)
2020-12-18T15:47:56.7925206Z Receiving objects:  28% (226/805)
2020-12-18T15:47:56.7925689Z Receiving objects:  29% (234/805)
2020-12-18T15:47:56.7926187Z Receiving objects:  30% (242/805)
2020-12-18T15:47:56.7926669Z Receiving objects:  31% (250/805)
2020-12-18T15:47:56.7927161Z Receiving objects:  32% (258/805)
2020-12-18T15:47:56.7927652Z Receiving objects:  33% (266/805)
2020-12-18T15:47:56.7928144Z Receiving objects:  34% (274/805)
2020-12-18T15:47:56.7928627Z Receiving objects:  35% (282/805)
2020-12-18T15:47:56.7929109Z Receiving objects:  36% (290/805)
2020-12-18T15:47:56.7929745Z Receiving objects:  37% (298/805)
2020-12-18T15:47:56.7930242Z Receiving objects:  38% (306/805)
2020-12-18T15:47:56.7930725Z Receiving objects:  39% (314/805)
2020-12-18T15:47:56.7931222Z Receiving objects:  40% (322/805)
2020-12-18T15:47:56.7931705Z Receiving objects:  41% (331/805)
2020-12-18T15:47:56.7932205Z Receiving objects:  42% (339/805)
2020-12-18T15:47:56.7932683Z Receiving objects:  43% (347/805)
2020-12-18T15:47:56.7933165Z Receiving objects:  44% (355/805)
2020-12-18T15:47:56.7933662Z Receiving objects:  45% (363/805)
2020-12-18T15:47:56.7934142Z Receiving objects:  46% (371/805)
2020-12-18T15:47:56.7934634Z Receiving objects:  47% (379/805)
2020-12-18T15:47:56.7935115Z Receiving objects:  48% (387/805)
2020-12-18T15:47:56.7935611Z Receiving objects:  49% (395/805)
2020-12-18T15:47:56.7936093Z Receiving objects:  50% (403/805)
2020-12-18T15:47:56.7936588Z Receiving objects:  51% (411/805)
2020-12-18T15:47:56.7937068Z Receiving objects:  52% (419/805)
2020-12-18T15:47:56.7937551Z Receiving objects:  53% (427/805)
2020-12-18T15:47:56.7938041Z Receiving objects:  54% (435/805)
2020-12-18T15:47:56.7938521Z Receiving objects:  55% (443/805)
2020-12-18T15:47:56.7939147Z Receiving objects:  56% (451/805)
2020-12-18T15:47:56.7939609Z Receiving objects:  57% (459/805)
2020-12-18T15:47:56.7940052Z Receiving objects:  58% (467/805)
2020-12-18T15:47:56.7940512Z Receiving objects:  59% (475/805)
2020-12-18T15:47:56.7940957Z Receiving objects:  60% (483/805)
2020-12-18T15:47:56.7941570Z Receiving objects:  61% (492/805)
2020-12-18T15:47:56.7942040Z Receiving objects:  62% (500/805)
2020-12-18T15:47:56.7942487Z Receiving objects:  63% (508/805)
2020-12-18T15:47:56.7942949Z Receiving objects:  64% (516/805)
2020-12-18T15:47:56.7943398Z Receiving objects:  65% (524/805)
2020-12-18T15:47:56.7943947Z Receiving objects:  66% (532/805)
2020-12-18T15:47:56.7944394Z Receiving objects:  67% (540/805)
2020-12-18T15:47:56.7944841Z Receiving objects:  68% (548/805)
2020-12-18T15:47:56.7945300Z Receiving objects:  69% (556/805)
2020-12-18T15:47:56.7945747Z Receiving objects:  70% (564/805)
2020-12-18T15:47:56.7946394Z Receiving objects:  71% (572/805)
2020-12-18T15:47:56.7946874Z Receiving objects:  72% (580/805)
2020-12-18T15:47:56.7947370Z Receiving objects:  73% (588/805)
2020-12-18T15:47:56.7947851Z Receiving objects:  74% (596/805)
2020-12-18T15:47:56.7948330Z Receiving objects:  75% (604/805)
2020-12-18T15:47:56.7948824Z Receiving objects:  76% (612/805)
2020-12-18T15:47:56.7949302Z Receiving objects:  77% (620/805)
2020-12-18T15:47:56.7949797Z Receiving objects:  78% (628/805)
2020-12-18T15:47:56.7950277Z Receiving objects:  79% (636/805)
2020-12-18T15:47:56.7950768Z Receiving objects:  80% (644/805)
2020-12-18T15:47:56.7951249Z Receiving objects:  81% (653/805)
2020-12-18T15:47:56.7951798Z Receiving objects:  82% (661/805)
2020-12-18T15:47:56.7952295Z Receiving objects:  83% (669/805)
2020-12-18T15:47:56.7952774Z Receiving objects:  84% (677/805)
2020-12-18T15:47:56.7953264Z Receiving objects:  85% (685/805)
2020-12-18T15:47:56.7953744Z Receiving objects:  86% (693/805)
2020-12-18T15:47:56.7954239Z Receiving objects:  87% (701/805)
2020-12-18T15:47:56.7964590Z Receiving objects:  88% (709/805)
2020-12-18T15:47:56.7965171Z Receiving objects:  89% (717/805)
2020-12-18T15:47:56.7965662Z Receiving objects:  90% (725/805)
2020-12-18T15:47:56.7966150Z Receiving objects:  91% (733/805)
2020-12-18T15:47:56.7966649Z Receiving objects:  92% (741/805)
2020-12-18T15:47:56.7967136Z Receiving objects:  93% (749/805)
2020-12-18T15:47:56.7967634Z Receiving objects:  94% (757/805)
2020-12-18T15:47:56.7968116Z Receiving objects:  95% (765/805)
2020-12-18T15:47:56.7968609Z Receiving objects:  96% (773/805)
2020-12-18T15:47:56.7969093Z Receiving objects:  97% (781/805)
2020-12-18T15:47:56.7969589Z Receiving objects:  98% (789/805)
2020-12-18T15:47:56.7970080Z Receiving objects:  99% (797/805)
2020-12-18T15:47:56.7971334Z remote: Total 805 (delta 144), reused 351 (delta 45), pack-reused 0        
2020-12-18T15:47:56.7971968Z Receiving objects: 100% (805/805)
2020-12-18T15:47:56.7972527Z Receiving objects: 100% (805/805), 10.48 MiB | 28.45 MiB/s, done.
2020-12-18T15:47:56.7973087Z Resolving deltas:   0% (0/144)
2020-12-18T15:47:56.7973557Z Resolving deltas:   1% (2/144)
2020-12-18T15:47:56.7974028Z Resolving deltas:   2% (3/144)
2020-12-18T15:47:56.7974513Z Resolving deltas:   3% (5/144)
2020-12-18T15:47:56.7974976Z Resolving deltas:   4% (6/144)
2020-12-18T15:47:56.7975456Z Resolving deltas:   5% (8/144)
2020-12-18T15:47:56.7975925Z Resolving deltas:   6% (9/144)
2020-12-18T15:47:56.7976408Z Resolving deltas:   7% (11/144)
2020-12-18T15:47:56.7976939Z Resolving deltas:   8% (12/144)
2020-12-18T15:47:56.7977422Z Resolving deltas:   9% (13/144)
2020-12-18T15:47:56.7977900Z Resolving deltas:  11% (16/144)
2020-12-18T15:47:56.7978371Z Resolving deltas:  12% (18/144)
2020-12-18T15:47:56.7978852Z Resolving deltas:  13% (19/144)
2020-12-18T15:47:56.7979320Z Resolving deltas:  14% (21/144)
2020-12-18T15:47:56.7979801Z Resolving deltas:  15% (22/144)
2020-12-18T15:47:56.7980270Z Resolving deltas:  16% (24/144)
2020-12-18T15:47:56.7980748Z Resolving deltas:  17% (25/144)
2020-12-18T15:47:56.7981214Z Resolving deltas:  18% (26/144)
2020-12-18T15:47:56.7981888Z Resolving deltas:  19% (28/144)
2020-12-18T15:47:56.7982370Z Resolving deltas:  20% (29/144)
2020-12-18T15:47:56.7982841Z Resolving deltas:  21% (31/144)
2020-12-18T15:47:56.7983319Z Resolving deltas:  22% (32/144)
2020-12-18T15:47:56.7983787Z Resolving deltas:  23% (34/144)
2020-12-18T15:47:56.7984274Z Resolving deltas:  24% (35/144)
2020-12-18T15:47:56.7984743Z Resolving deltas:  25% (36/144)
2020-12-18T15:47:56.7985209Z Resolving deltas:  26% (38/144)
2020-12-18T15:47:56.7985687Z Resolving deltas:  27% (39/144)
2020-12-18T15:47:56.7986156Z Resolving deltas:  28% (41/144)
2020-12-18T15:47:56.7986782Z Resolving deltas:  29% (42/144)
2020-12-18T15:47:56.7987245Z Resolving deltas:  30% (44/144)
2020-12-18T15:47:56.7987725Z Resolving deltas:  31% (45/144)
2020-12-18T15:47:56.7988189Z Resolving deltas:  32% (47/144)
2020-12-18T15:47:56.7988653Z Resolving deltas:  33% (48/144)
2020-12-18T15:47:56.7989133Z Resolving deltas:  34% (49/144)
2020-12-18T15:47:56.7989606Z Resolving deltas:  35% (51/144)
2020-12-18T15:47:56.7990087Z Resolving deltas:  36% (52/144)
2020-12-18T15:47:56.7990552Z Resolving deltas:  37% (54/144)
2020-12-18T15:47:56.7991031Z Resolving deltas:  38% (55/144)
2020-12-18T15:47:56.7991495Z Resolving deltas:  39% (57/144)
2020-12-18T15:47:56.7991958Z Resolving deltas:  40% (58/144)
2020-12-18T15:47:56.7992436Z Resolving deltas:  41% (60/144)
2020-12-18T15:47:56.7992900Z Resolving deltas:  42% (61/144)
2020-12-18T15:47:56.7993378Z Resolving deltas:  43% (62/144)
2020-12-18T15:47:56.7993844Z Resolving deltas:  44% (64/144)
2020-12-18T15:47:56.7994393Z Resolving deltas:  45% (65/144)
2020-12-18T15:47:56.7994864Z Resolving deltas:  46% (67/144)
2020-12-18T15:47:56.7995329Z Resolving deltas:  47% (68/144)
2020-12-18T15:47:56.7995804Z Resolving deltas:  48% (70/144)
2020-12-18T15:47:56.7996266Z Resolving deltas:  49% (71/144)
2020-12-18T15:47:56.7996743Z Resolving deltas:  50% (72/144)
2020-12-18T15:47:56.7997209Z Resolving deltas:  51% (74/144)
2020-12-18T15:47:56.7997688Z Resolving deltas:  52% (75/144)
2020-12-18T15:47:56.7998157Z Resolving deltas:  53% (77/144)
2020-12-18T15:47:56.7998621Z Resolving deltas:  54% (78/144)
2020-12-18T15:47:56.7999103Z Resolving deltas:  55% (80/144)
2020-12-18T15:47:56.7999566Z Resolving deltas:  56% (81/144)
2020-12-18T15:47:56.8000043Z Resolving deltas:  57% (83/144)
2020-12-18T15:47:56.8000509Z Resolving deltas:  58% (84/144)
2020-12-18T15:47:56.8000983Z Resolving deltas:  59% (85/144)
2020-12-18T15:47:56.8001446Z Resolving deltas:  60% (87/144)
2020-12-18T15:47:56.8001908Z Resolving deltas:  61% (88/144)
2020-12-18T15:47:56.8002396Z Resolving deltas:  62% (90/144)
2020-12-18T15:47:56.8002862Z Resolving deltas:  63% (91/144)
2020-12-18T15:47:56.8003337Z Resolving deltas:  64% (93/144)
2020-12-18T15:47:56.8003802Z Resolving deltas:  65% (94/144)
2020-12-18T15:47:56.8004275Z Resolving deltas:  66% (96/144)
2020-12-18T15:47:56.8004741Z Resolving deltas:  67% (97/144)
2020-12-18T15:47:56.8005205Z Resolving deltas:  68% (98/144)
2020-12-18T15:47:56.8005684Z Resolving deltas:  69% (100/144)
2020-12-18T15:47:56.8006154Z Resolving deltas:  70% (101/144)
2020-12-18T15:47:56.8006633Z Resolving deltas:  71% (103/144)
2020-12-18T15:47:56.8007104Z Resolving deltas:  72% (104/144)
2020-12-18T15:47:56.8007583Z Resolving deltas:  73% (106/144)
2020-12-18T15:47:56.8008048Z Resolving deltas:  74% (107/144)
2020-12-18T15:47:56.8008530Z Resolving deltas:  75% (108/144)
2020-12-18T15:47:56.8009000Z Resolving deltas:  76% (110/144)
2020-12-18T15:47:56.8009465Z Resolving deltas:  77% (111/144)
2020-12-18T15:47:56.8009945Z Resolving deltas:  78% (113/144)
2020-12-18T15:47:56.8010417Z Resolving deltas:  79% (114/144)
2020-12-18T15:47:56.8010894Z Resolving deltas:  80% (116/144)
2020-12-18T15:47:56.8011359Z Resolving deltas:  81% (117/144)
2020-12-18T15:47:56.8011838Z Resolving deltas:  82% (119/144)
2020-12-18T15:47:56.8012306Z Resolving deltas:  83% (120/144)
2020-12-18T15:47:56.8012771Z Resolving deltas:  84% (121/144)
2020-12-18T15:47:56.8013248Z Resolving deltas:  85% (123/144)
2020-12-18T15:47:56.8013718Z Resolving deltas:  86% (124/144)
2020-12-18T15:47:56.8014197Z Resolving deltas:  87% (126/144)
2020-12-18T15:47:56.8014659Z Resolving deltas:  88% (127/144)
2020-12-18T15:47:56.8015140Z Resolving deltas:  89% (129/144)
2020-12-18T15:47:56.8015606Z Resolving deltas:  90% (130/144)
2020-12-18T15:47:56.8016072Z Resolving deltas:  91% (132/144)
2020-12-18T15:47:56.8016549Z Resolving deltas:  92% (133/144)
2020-12-18T15:47:56.8017014Z Resolving deltas:  93% (134/144)
2020-12-18T15:47:56.8017492Z Resolving deltas:  94% (136/144)
2020-12-18T15:47:56.8018032Z Resolving deltas:  95% (137/144)
2020-12-18T15:47:56.8018510Z Resolving deltas:  96% (139/144)
2020-12-18T15:47:56.8018978Z Resolving deltas:  97% (140/144)
2020-12-18T15:47:56.8019441Z Resolving deltas:  98% (142/144)
2020-12-18T15:47:56.8019918Z Resolving deltas:  99% (143/144)
2020-12-18T15:47:56.8020392Z Resolving deltas: 100% (144/144)
2020-12-18T15:47:56.8020903Z Resolving deltas: 100% (144/144), done.
2020-12-18T15:47:56.8023128Z From https://github.com/acme/acme.angular-app
2020-12-18T15:47:56.8024541Z  * [new ref]         a9b5e42d36f8e00d66bc9da1db39861d995e708c -> pull/91/merge
2020-12-18T15:47:56.8025907Z ##[endgroup]
2020-12-18T15:47:56.8026509Z ##[group]Determining the checkout info
2020-12-18T15:47:56.8027023Z ##[endgroup]
2020-12-18T15:47:56.8027480Z ##[group]Checking out the ref
2020-12-18T15:47:56.8028414Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/91/merge
2020-12-18T15:47:56.9728490Z Note: switching to 'refs/remotes/pull/91/merge'.
2020-12-18T15:47:56.9729198Z 
2020-12-18T15:47:56.9730053Z You are in 'detached HEAD' state. You can look around, make experimental
2020-12-18T15:47:56.9730902Z changes and commit them, and you can discard any commits you make in this
2020-12-18T15:47:56.9731725Z state without impacting any branches by switching back to a branch.
2020-12-18T15:47:56.9732193Z 
2020-12-18T15:47:56.9732750Z If you want to create a new branch to retain commits you create, you may
2020-12-18T15:47:56.9733696Z do so (now or later) by using -c with the switch command. Example:
2020-12-18T15:47:56.9734143Z 
2020-12-18T15:47:56.9734739Z   git switch -c <new-branch-name>
2020-12-18T15:47:56.9735112Z 
2020-12-18T15:47:56.9735527Z Or undo this operation with:
2020-12-18T15:47:56.9735841Z 
2020-12-18T15:47:56.9736322Z   git switch -
2020-12-18T15:47:56.9736580Z 
2020-12-18T15:47:56.9737245Z Turn off this advice by setting config variable advice.detachedHead to false
2020-12-18T15:47:56.9737817Z 
2020-12-18T15:47:56.9738748Z HEAD is now at a9b5e42 Merge 5aa9f838fbc45849957c323c3d9176306fe1a729 into 6ad9c5fca503d43e4347312a41ac74fe1d7be03f
2020-12-18T15:47:56.9739881Z ##[endgroup]
2020-12-18T15:47:56.9792109Z [command]/usr/bin/git log -1 --format='%H'
2020-12-18T15:47:56.9828295Z 'a9b5e42d36f8e00d66bc9da1db39861d995e708c'
2020-12-18T15:47:57.0014344Z ##[group]Run TriPSs/conventional-changelog-action@v3
2020-12-18T15:47:57.0015040Z with:
2020-12-18T15:47:57.0016369Z   github-token: ***
2020-12-18T15:47:57.0016891Z   git-message: chore(release): {version}
2020-12-18T15:47:57.0017519Z   git-user-name: Conventional Changelog Action
2020-12-18T15:47:57.0018393Z   git-user-email: [email protected]
2020-12-18T15:47:57.0019192Z   git-pull-method: --ff-only
2020-12-18T15:47:57.0019648Z   preset: angular
2020-12-18T15:47:57.0020047Z   tag-prefix: v
2020-12-18T15:47:57.0020497Z   output-file: CHANGELOG.md
2020-12-18T15:47:57.0020980Z   release-count: 5
2020-12-18T15:47:57.0021705Z   version-file: ./package.json
2020-12-18T15:47:57.0022217Z   version-path: version
2020-12-18T15:47:57.0022705Z   skip-on-empty: true
2020-12-18T15:47:57.0023203Z   skip-version-file: false
2020-12-18T15:47:57.0023695Z   skip-commit: false
2020-12-18T15:47:57.0024155Z   fallback-version: 0.1.0
2020-12-18T15:47:57.0024569Z env:
2020-12-18T15:47:57.0025077Z   CONFIGURATION_TARGET: development
2020-12-18T15:47:57.0025559Z ##[endgroup]
2020-12-18T15:47:57.2088814Z Using "angular" preset
2020-12-18T15:47:57.2090187Z Using "chore(release): {version}" as commit message
2020-12-18T15:47:57.2091152Z Using "Conventional Changelog Action" as git user.name
2020-12-18T15:47:57.2092528Z Using "[email protected]" as git user.email
2020-12-18T15:47:57.2093539Z Using "5" release count
2020-12-18T15:47:57.2094295Z Using "./package.json" as version file
2020-12-18T15:47:57.2095059Z Using "version" as version path
2020-12-18T15:47:57.2095756Z Using "v" as tag prefix
2020-12-18T15:47:57.2096466Z Using "CHANGELOG.md" as output file
2020-12-18T15:47:57.2097196Z Using "" as config file
2020-12-18T15:47:57.2098315Z Skipping empty releases is "enabled"
2020-12-18T15:47:57.2099313Z Skipping the update of the version file is "disabled"
2020-12-18T15:47:57.2100490Z Pull to make sure we have the full git history
2020-12-18T15:47:57.2135470Z [command]/usr/bin/git config user.name Conventional Changelog Action
2020-12-18T15:47:57.2194235Z [command]/usr/bin/git config user.email [email protected]
2020-12-18T15:47:57.2224503Z [command]/usr/bin/git remote set-url origin ***github.com/acme/acme.angular-app.git
2020-12-18T15:47:57.2297712Z [command]/usr/bin/git rev-parse --is-shallow-repository
2020-12-18T15:47:57.2368099Z true
2020-12-18T15:47:57.2476299Z [command]/usr/bin/git pull --unshallow --tags --ff-only
2020-12-18T15:47:58.6338747Z From https://github.com/acme/acme.angular-app
2020-12-18T15:47:58.6341318Z  * [new branch]      jsmith-patch-1 -> origin/jsmith-patch-1
2020-12-18T15:47:58.6351480Z  * [new branch]      master           -> origin/master
2020-12-18T15:47:58.6352570Z  * [new branch]      refactor/tooling -> origin/refactor/tooling
2020-12-18T15:47:58.6353570Z  * [new branch]      release          -> origin/release
2020-12-18T15:47:58.6362208Z You are not currently on a branch.
2020-12-18T15:47:58.6386913Z (node:2602) UnhandledPromiseRejectionWarning: Error: The process '/usr/bin/git' failed with exit code 1
2020-12-18T15:47:58.6400346Z     at ExecState._setResult (/home/runner/work/_actions/TriPSs/conventional-changelog-action/v3/node_modules/@actions/exec/lib/toolrunner.js:574:25)
2020-12-18T15:47:58.6403341Z     at ExecState.CheckComplete (/home/runner/work/_actions/TriPSs/conventional-changelog-action/v3/node_modules/@actions/exec/lib/toolrunner.js:557:18)
2020-12-18T15:47:58.6411762Z     at ChildProcess.<anonymous> (/home/runner/work/_actions/TriPSs/conventional-changelog-action/v3/node_modules/@actions/exec/lib/toolrunner.js:451:27)
2020-12-18T15:47:58.6423684Z Please specify which branch you want to merge with.
2020-12-18T15:47:58.6425672Z     at ChildProcess.emit (events.js:210:5)
2020-12-18T15:47:58.6426758Z     at maybeClose (internal/child_process.js:1021:16)
2020-12-18T15:47:58.6428083Z     at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)
2020-12-18T15:47:58.6430828Z (node:2602) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
2020-12-18T15:47:58.6434052Z (node:2602) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
2020-12-18T15:47:58.6503142Z See git-pull(1) for details.
2020-12-18T15:47:58.6504316Z 
2020-12-18T15:47:58.6505032Z     git pull <remote> <branch>
2020-12-18T15:47:58.6505481Z 
2020-12-18T15:47:58.6640114Z ##[group]Run actions/create-release@v1
2020-12-18T15:47:58.6640678Z with:
2020-12-18T15:47:58.6641036Z   draft: false
2020-12-18T15:47:58.6641453Z   prerelease: false
2020-12-18T15:47:58.6641859Z env:
2020-12-18T15:47:58.6642338Z   CONFIGURATION_TARGET: development
2020-12-18T15:47:58.6643853Z   GITHUB_TOKEN: ***
2020-12-18T15:47:58.6644262Z ##[endgroup]
2020-12-18T15:47:58.7591443Z ##[error]Input required and not supplied: tag_name
2020-12-18T15:47:58.7767443Z Post job cleanup.
2020-12-18T15:47:58.8843603Z [command]/usr/bin/git version
2020-12-18T15:47:58.8907219Z git version 2.29.2
2020-12-18T15:47:58.8943854Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2020-12-18T15:47:58.9002010Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-12-18T15:47:58.9285164Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-12-18T15:47:58.9332307Z http.https://github.com/.extraheader
2020-12-18T15:47:58.9343801Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2020-12-18T15:47:58.9384897Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-12-18T15:47:58.9752219Z Cleaning up orphan processes

from conventional-changelog-action.

unjust avatar unjust commented on June 15, 2024

@TriPSs is this still the case that it doesn't work on PRs ?

from conventional-changelog-action.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.