Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v7.2.0 doesn't set outputs correctly #189

Closed
vincentchu12 opened this issue May 6, 2021 · 3 comments
Closed

v7.2.0 doesn't set outputs correctly #189

vincentchu12 opened this issue May 6, 2021 · 3 comments
Assignees
Labels
good first issue Good for newcomers type: bug Verified problems that need to be worked on
Projects

Comments

@vincentchu12
Copy link

vincentchu12 commented May 6, 2021

Describe the bug
v7.2.0 release does not set outputs correctly and the outputs committed, pushed and tagged are not available to be used in other steps.

Verified that this behavior is still working in v7.1.2.

Workflow used

name: Sample Job
on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - "*"
  workflow_dispatch:

jobs:
  add-and-commit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2.3.4

      - name: Add and Commit 7.2.0
        id: add_and_commit_7_2_0
        uses: EndBug/add-and-commit@v7.2.0
        with:
          message: Test message
          add: -u
          push: false

      - name: Print Add and Commit Outputs
        run: |
          echo ${{steps.add_and_commit_7_2_0.outputs.committed}}
          echo ${{steps.add_and_commit_7_2_0.outputs.pushed}}
          echo ${{steps.add_and_commit_7_2_0.outputs.tagged}}

      - name: Add and Commit 7.1.2
        id: add_and_commit_7_1_2
        uses: EndBug/add-and-commit@v7.1.2
        with:
          message: Test message
          add: -u
          push: false

      - name: Print Add and Commit Outputs
        run: |
          echo ${{steps.add_and_commit_7_1_2.outputs.committed}}
          echo ${{steps.add_and_commit_7_1_2.outputs.pushed}}
          echo ${{steps.add_and_commit_7_1_2.outputs.tagged}}

Expected behavior
The outputs of the add and commit step should be accessible to be used in later steps. They should return 'true' or 'false' as indicated in the documentation.

The following should output true or false in a subsequent step assuming that the add and commit step has an ID of add_and_commit_7_2_0.

          echo ${{steps.add_and_commit_7_2_0.outputs.committed}}
          echo ${{steps.add_and_commit_7_2_0.outputs.pushed}}
          echo ${{steps.add_and_commit_7_2_0.outputs.tagged}}

Logs
Either provide a link to the action run or (if your repo is private) paste here the logs from the step that uses it. If you paste the logs, please use this template, and remember to paste the logs from all the different sections.

Logs
2021-05-06T02:58:10.9084171Z ##[section]Starting: Request a runner to run this job
2021-05-06T02:58:10.9787296Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-05-06T02:58:11.0772928Z Can't find any online and idle self-hosted runner in current repository's organization/enterprise account that matches the required labels: 'ubuntu-latest'
2021-05-06T02:58:11.1782536Z Found online and idle hosted runner in current repository's enterprise account that matches the required labels: 'ubuntu-latest'
2021-05-06T02:58:11.2958082Z ##[section]Finishing: Request a runner to run this job
2021-05-06T02:58:19.7375287Z Current runner version: '2.278.0'
2021-05-06T02:58:19.7409697Z ##[group]Operating System
2021-05-06T02:58:19.7410964Z Ubuntu
2021-05-06T02:58:19.7411569Z 20.04.2
2021-05-06T02:58:19.7412022Z LTS
2021-05-06T02:58:19.7412573Z ##[endgroup]
2021-05-06T02:58:19.7413167Z ##[group]Virtual Environment
2021-05-06T02:58:19.7413919Z Environment: ubuntu-20.04
2021-05-06T02:58:19.7414510Z Version: 20210425.1
2021-05-06T02:58:19.7415674Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210425.1/images/linux/Ubuntu2004-README.md
2021-05-06T02:58:19.7417224Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210425.1
2021-05-06T02:58:19.7418191Z ##[endgroup]
2021-05-06T02:58:19.7420350Z ##[group]GITHUB_TOKEN Permissions
2021-05-06T02:58:19.7421769Z Actions: write
2021-05-06T02:58:19.7422314Z Checks: write
2021-05-06T02:58:19.7422926Z Contents: write
2021-05-06T02:58:19.7423499Z Deployments: write
2021-05-06T02:58:19.7424197Z Issues: write
2021-05-06T02:58:19.7424828Z Metadata: read
2021-05-06T02:58:19.7425446Z Packages: write
2021-05-06T02:58:19.7426040Z PullRequests: write
2021-05-06T02:58:19.7426773Z RepositoryProjects: write
2021-05-06T02:58:19.7427478Z SecurityEvents: write
2021-05-06T02:58:19.7428145Z Statuses: write
2021-05-06T02:58:19.7428857Z ##[endgroup]
2021-05-06T02:58:19.7432272Z Prepare workflow directory
2021-05-06T02:58:19.8130126Z Prepare all required actions
2021-05-06T02:58:19.8142742Z Getting action download info
2021-05-06T02:58:20.2613352Z Download action repository 'actions/checkout@v2.3.4'
2021-05-06T02:58:22.2100010Z Download action repository 'EndBug/add-and-commit@v7.2.0'
2021-05-06T02:58:22.6254967Z Download action repository 'EndBug/add-and-commit@v7.1.2'
2021-05-06T02:58:23.2941382Z ##[group]Run actions/checkout@v2.3.4
2021-05-06T02:58:23.2942055Z with:
2021-05-06T02:58:23.2942577Z   repository: 
2021-05-06T02:58:23.2943754Z   token: ***
2021-05-06T02:58:23.2944174Z   ssh-strict: true
2021-05-06T02:58:23.2944751Z   persist-credentials: true
2021-05-06T02:58:23.2945270Z   clean: true
2021-05-06T02:58:23.2945702Z   fetch-depth: 1
2021-05-06T02:58:23.2946127Z   lfs: false
2021-05-06T02:58:23.2946600Z   submodules: false
2021-05-06T02:58:23.2947046Z ##[endgroup]
2021-05-06T02:58:24.2195318Z Syncing repository: 
2021-05-06T02:58:24.2196248Z ##[group]Getting Git version info
2021-05-06T02:58:24.2197307Z Working directory is '/home/runner/work/'
2021-05-06T02:58:24.2198101Z [command]/usr/bin/git version
2021-05-06T02:58:24.2198595Z git version 2.31.1
2021-05-06T02:58:24.2199474Z ##[endgroup]
2021-05-06T02:58:24.2200498Z Deleting the contents of '/home/runner/work/'
2021-05-06T02:58:24.2201857Z ##[group]Initializing the repository
2021-05-06T02:58:24.2203500Z [command]/usr/bin/git init /home/runner/work/
2021-05-06T02:58:24.2204644Z hint: Using 'master' as the name for the initial branch. This default branch name
2021-05-06T02:58:24.2205563Z hint: is subject to change. To configure the initial branch name to use in all
2021-05-06T02:58:24.2206443Z hint: of your new repositories, which will suppress this warning, call:
2021-05-06T02:58:24.2207081Z hint: 
2021-05-06T02:58:24.2207854Z hint:  git config --global init.defaultBranch 
2021-05-06T02:58:24.2208435Z hint: 
2021-05-06T02:58:24.2209214Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2021-05-06T02:58:24.2211552Z hint: 'development'. The just-created branch can be renamed via this command:
2021-05-06T02:58:24.2212226Z hint: 
2021-05-06T02:58:24.2212790Z hint:  git branch -m 
2021-05-06T02:58:24.2213864Z Initialized empty Git repository in /home/runner/work//.git/
2021-05-06T02:58:24.2215219Z [command]/usr/bin/git remote add origin https://github.com/
2021-05-06T02:58:24.2216058Z ##[endgroup]
2021-05-06T02:58:24.2216675Z ##[group]Disabling automatic garbage collection
2021-05-06T02:58:24.2217813Z [command]/usr/bin/git config --local gc.auto 0
2021-05-06T02:58:24.2218374Z ##[endgroup]
2021-05-06T02:58:24.2219971Z ##[group]Setting up auth
2021-05-06T02:58:24.2220947Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-05-06T02:58:24.2222565Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-05-06T02:58:24.2224225Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-05-06T02:58:24.2226287Z [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' || :
2021-05-06T02:58:24.2228293Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-05-06T02:58:24.2229201Z ##[endgroup]
2021-05-06T02:58:24.2229753Z ##[group]Fetching the repository
2021-05-06T02:58:24.2231643Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +:refs/remotes/pull/45/merge
2021-05-06T02:58:24.2233156Z remote: Enumerating objects: 60, done.        
2021-05-06T02:58:24.2233782Z remote: Counting objects:   1% (1/60)        
2021-05-06T02:58:24.2234350Z remote: Counting objects:   3% (2/60)        
2021-05-06T02:58:24.2234931Z remote: Counting objects:   5% (3/60)        
2021-05-06T02:58:24.2235494Z remote: Counting objects:   6% (4/60)        
2021-05-06T02:58:24.2236069Z remote: Counting objects:   8% (5/60)        
2021-05-06T02:58:24.2236794Z remote: Counting objects:  10% (6/60)        
2021-05-06T02:58:24.2237386Z remote: Counting objects:  11% (7/60)        
2021-05-06T02:58:24.2237950Z remote: Counting objects:  13% (8/60)        
2021-05-06T02:58:24.2238526Z remote: Counting objects:  15% (9/60)        
2021-05-06T02:58:24.2239122Z remote: Counting objects:  16% (10/60)        
2021-05-06T02:58:24.2239685Z remote: Counting objects:  18% (11/60)        
2021-05-06T02:58:24.2240258Z remote: Counting objects:  20% (12/60)        
2021-05-06T02:58:24.2240823Z remote: Counting objects:  21% (13/60)        
2021-05-06T02:58:24.2241398Z remote: Counting objects:  23% (14/60)        
2021-05-06T02:58:24.2241960Z remote: Counting objects:  25% (15/60)        
2021-05-06T02:58:24.2242841Z remote: Counting objects:  26% (16/60)        
2021-05-06T02:58:24.2243718Z remote: Counting objects:  28% (17/60)        
2021-05-06T02:58:24.2244306Z remote: Counting objects:  30% (18/60)        
2021-05-06T02:58:24.2244891Z remote: Counting objects:  31% (19/60)        
2021-05-06T02:58:24.2245457Z remote: Counting objects:  33% (20/60)        
2021-05-06T02:58:24.2246031Z remote: Counting objects:  35% (21/60)        
2021-05-06T02:58:24.2246588Z remote: Counting objects:  36% (22/60)        
2021-05-06T02:58:24.2247169Z remote: Counting objects:  38% (23/60)        
2021-05-06T02:58:24.2247729Z remote: Counting objects:  40% (24/60)        
2021-05-06T02:58:24.2248302Z remote: Counting objects:  41% (25/60)        
2021-05-06T02:58:24.2248862Z remote: Counting objects:  43% (26/60)        
2021-05-06T02:58:24.2249433Z remote: Counting objects:  45% (27/60)        
2021-05-06T02:58:24.2250159Z remote: Counting objects:  46% (28/60)        
2021-05-06T02:58:24.2250847Z remote: Counting objects:  48% (29/60)        
2021-05-06T02:58:24.2251420Z remote: Counting objects:  50% (30/60)        
2021-05-06T02:58:24.2251980Z remote: Counting objects:  51% (31/60)        
2021-05-06T02:58:24.2252557Z remote: Counting objects:  53% (32/60)        
2021-05-06T02:58:24.2253128Z remote: Counting objects:  55% (33/60)        
2021-05-06T02:58:24.2253705Z remote: Counting objects:  56% (34/60)        
2021-05-06T02:58:24.2254265Z remote: Counting objects:  58% (35/60)        
2021-05-06T02:58:24.2254839Z remote: Counting objects:  60% (36/60)        
2021-05-06T02:58:24.2255577Z remote: Counting objects:  61% (37/60)        
2021-05-06T02:58:24.2256156Z remote: Counting objects:  63% (38/60)        
2021-05-06T02:58:24.2256730Z remote: Counting objects:  65% (39/60)        
2021-05-06T02:58:24.2257289Z remote: Counting objects:  66% (40/60)        
2021-05-06T02:58:24.2257861Z remote: Counting objects:  68% (41/60)        
2021-05-06T02:58:24.2258420Z remote: Counting objects:  70% (42/60)        
2021-05-06T02:58:24.2258997Z remote: Counting objects:  71% (43/60)        
2021-05-06T02:58:24.2259551Z remote: Counting objects:  73% (44/60)        
2021-05-06T02:58:24.2260127Z remote: Counting objects:  75% (45/60)        
2021-05-06T02:58:24.2260695Z remote: Counting objects:  76% (46/60)        
2021-05-06T02:58:24.2261274Z remote: Counting objects:  78% (47/60)        
2021-05-06T02:58:24.2261842Z remote: Counting objects:  80% (48/60)        
2021-05-06T02:58:24.2262399Z remote: Counting objects:  81% (49/60)        
2021-05-06T02:58:24.2262975Z remote: Counting objects:  83% (50/60)        
2021-05-06T02:58:24.2263627Z remote: Counting objects:  85% (51/60)        
2021-05-06T02:58:24.2264155Z remote: Counting objects:  86% (52/60)        
2021-05-06T02:58:24.2264671Z remote: Counting objects:  88% (53/60)        
2021-05-06T02:58:24.2265199Z remote: Counting objects:  90% (54/60)        
2021-05-06T02:58:24.2265715Z remote: Counting objects:  91% (55/60)        
2021-05-06T02:58:24.2266243Z remote: Counting objects:  93% (56/60)        
2021-05-06T02:58:24.2266775Z remote: Counting objects:  95% (57/60)        
2021-05-06T02:58:24.2267291Z remote: Counting objects:  96% (58/60)        
2021-05-06T02:58:24.2267819Z remote: Counting objects:  98% (59/60)        
2021-05-06T02:58:24.2268471Z remote: Counting objects: 100% (60/60)        
2021-05-06T02:58:24.2269041Z remote: Counting objects: 100% (60/60), done.        
2021-05-06T02:58:24.2269613Z remote: Compressing objects:   1% (1/53)        
2021-05-06T02:58:24.2270413Z remote: Compressing objects:   3% (2/53)        
2021-05-06T02:58:24.2271048Z remote: Compressing objects:   5% (3/53)        
2021-05-06T02:58:24.2271662Z remote: Compressing objects:   7% (4/53)        
2021-05-06T02:58:24.2272283Z remote: Compressing objects:   9% (5/53)        
2021-05-06T02:58:24.2272897Z remote: Compressing objects:  11% (6/53)        
2021-05-06T02:58:24.2273517Z remote: Compressing objects:  13% (7/53)        
2021-05-06T02:58:24.2274128Z remote: Compressing objects:  15% (8/53)        
2021-05-06T02:58:24.2274753Z remote: Compressing objects:  16% (9/53)        
2021-05-06T02:58:24.2275380Z remote: Compressing objects:  18% (10/53)        
2021-05-06T02:58:24.2275994Z remote: Compressing objects:  20% (11/53)        
2021-05-06T02:58:24.2276633Z remote: Compressing objects:  22% (12/53)        
2021-05-06T02:58:24.2277250Z remote: Compressing objects:  24% (13/53)        
2021-05-06T02:58:24.2277873Z remote: Compressing objects:  26% (14/53)        
2021-05-06T02:58:24.2278480Z remote: Compressing objects:  28% (15/53)        
2021-05-06T02:58:24.2279113Z remote: Compressing objects:  30% (16/53)        
2021-05-06T02:58:24.2279720Z remote: Compressing objects:  32% (17/53)        
2021-05-06T02:58:24.2280342Z remote: Compressing objects:  33% (18/53)        
2021-05-06T02:58:24.2280960Z remote: Compressing objects:  35% (19/53)        
2021-05-06T02:58:24.2281571Z remote: Compressing objects:  37% (20/53)        
2021-05-06T02:58:24.2282189Z remote: Compressing objects:  39% (21/53)        
2021-05-06T02:58:24.2282794Z remote: Compressing objects:  41% (22/53)        
2021-05-06T02:58:24.2283414Z remote: Compressing objects:  43% (23/53)        
2021-05-06T02:58:24.2284022Z remote: Compressing objects:  45% (24/53)        
2021-05-06T02:58:24.2284650Z remote: Compressing objects:  47% (25/53)        
2021-05-06T02:58:24.2285256Z remote: Compressing objects:  49% (26/53)        
2021-05-06T02:58:24.2285881Z remote: Compressing objects:  50% (27/53)        
2021-05-06T02:58:24.2286503Z remote: Compressing objects:  52% (28/53)        
2021-05-06T02:58:24.2287192Z remote: Compressing objects:  54% (29/53)        
2021-05-06T02:58:24.2287815Z remote: Compressing objects:  56% (30/53)        
2021-05-06T02:58:24.2288425Z remote: Compressing objects:  58% (31/53)        
2021-05-06T02:58:24.2289047Z remote: Compressing objects:  60% (32/53)        
2021-05-06T02:58:24.2289656Z remote: Compressing objects:  62% (33/53)        
2021-05-06T02:58:24.2290530Z remote: Compressing objects:  64% (34/53)        
2021-05-06T02:58:24.2291140Z remote: Compressing objects:  66% (35/53)        
2021-05-06T02:58:24.2291761Z remote: Compressing objects:  67% (36/53)        
2021-05-06T02:58:24.2292389Z remote: Compressing objects:  69% (37/53)        
2021-05-06T02:58:24.2293009Z remote: Compressing objects:  71% (38/53)        
2021-05-06T02:58:24.2293638Z remote: Compressing objects:  73% (39/53)        
2021-05-06T02:58:24.2294566Z remote: Compressing objects:  75% (40/53)        
2021-05-06T02:58:24.2295208Z remote: Compressing objects:  77% (41/53)        
2021-05-06T02:58:24.2295833Z remote: Compressing objects:  79% (42/53)        
2021-05-06T02:58:24.2296471Z remote: Compressing objects:  81% (43/53)        
2021-05-06T02:58:24.2297091Z remote: Compressing objects:  83% (44/53)        
2021-05-06T02:58:24.2297721Z remote: Compressing objects:  84% (45/53)        
2021-05-06T02:58:24.2298341Z remote: Compressing objects:  86% (46/53)        
2021-05-06T02:58:24.2298970Z remote: Compressing objects:  88% (47/53)        
2021-05-06T02:58:24.2299603Z remote: Compressing objects:  90% (48/53)        
2021-05-06T02:58:24.2300225Z remote: Compressing objects:  92% (49/53)        
2021-05-06T02:58:24.2300860Z remote: Compressing objects:  94% (50/53)        
2021-05-06T02:58:24.2301580Z remote: Compressing objects:  96% (51/53)        
2021-05-06T02:58:24.2302401Z remote: Compressing objects:  98% (52/53)        
2021-05-06T02:58:24.2303020Z remote: Compressing objects: 100% (53/53)        
2021-05-06T02:58:24.2303673Z remote: Compressing objects: 100% (53/53), done.        
2021-05-06T02:58:24.2304836Z remote: Total 60 (delta 14), reused 22 (delta 1), pack-reused 0        
2021-05-06T02:58:24.2305857Z From https://github.com/
2021-05-06T02:58:24.2307060Z  * [new ref]          -> pull/45/merge
2021-05-06T02:58:24.2308161Z ##[endgroup]
2021-05-06T02:58:24.2308993Z ##[group]Determining the checkout info
2021-05-06T02:58:24.2309530Z ##[endgroup]
2021-05-06T02:58:24.2310023Z ##[group]Checking out the ref
2021-05-06T02:58:24.2310955Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/45/merge
2021-05-06T02:58:24.2316517Z Note: switching to 'refs/remotes/pull/45/merge'.
2021-05-06T02:58:24.2317005Z 
2021-05-06T02:58:24.2317833Z You are in 'detached HEAD' state. You can look around, make experimental
2021-05-06T02:58:24.2318717Z changes and commit them, and you can discard any commits you make in this
2021-05-06T02:58:24.2319565Z state without impacting any branches by switching back to a branch.
2021-05-06T02:58:24.2320061Z 
2021-05-06T02:58:24.2320645Z If you want to create a new branch to retain commits you create, you may
2021-05-06T02:58:24.2321640Z do so (now or later) by using -c with the switch command. Example:
2021-05-06T02:58:24.2322087Z 
2021-05-06T02:58:24.2322726Z   git switch -c 
2021-05-06T02:58:24.2323120Z 
2021-05-06T02:58:24.2323543Z Or undo this operation with:
2021-05-06T02:58:24.2323891Z 
2021-05-06T02:58:24.2324403Z   git switch -
2021-05-06T02:58:24.2324675Z 
2021-05-06T02:58:24.2325359Z Turn off this advice by setting config variable advice.detachedHead to false
2021-05-06T02:58:24.2325944Z 
2021-05-06T02:58:24.2326957Z HEAD is now at  Merge  into 
2021-05-06T02:58:24.2328105Z ##[endgroup]
2021-05-06T02:58:24.2328850Z [command]/usr/bin/git log -1 --format='%H'
2021-05-06T02:58:24.2329941Z ''
2021-05-06T02:58:24.2532129Z ##[group]Run EndBug/add-and-commit@v7.2.0
2021-05-06T02:58:24.2532686Z with:
2021-05-06T02:58:24.2533131Z   message: Test message
2021-05-06T02:58:24.2533547Z   add: -u
2021-05-06T02:58:24.2533932Z   push: false
2021-05-06T02:58:24.2534303Z   cwd: .
2021-05-06T02:58:24.2534742Z   default_author: github_actor
2021-05-06T02:58:24.2535269Z   pull_strategy: --no-rebase
2021-05-06T02:58:24.2536379Z   github_token: ***
2021-05-06T02:58:24.2536807Z ##[endgroup]
2021-05-06T02:58:24.3681641Z Running in /home/runner/work/
2021-05-06T02:58:24.3711348Z Add input parsed as single string, running 1 git add command.
2021-05-06T02:58:24.3713321Z > Using ' <@users.noreply.github.com>' as author.
2021-05-06T02:58:24.3714233Z > Using "Test message" as commit message.
2021-05-06T02:58:24.3715117Z > Running for a PR, the action will use 'reproduce_bug' as ref.
2021-05-06T02:58:24.3717024Z ##[group]Internal logs
2021-05-06T02:58:24.3717562Z > Staging files...
2021-05-06T02:58:24.3718015Z > Adding files...
2021-05-06T02:58:24.3858407Z > No files to remove.
2021-05-06T02:58:24.3859559Z > Checking for uncommitted changes in the git working tree...
2021-05-06T02:58:24.3896348Z ##[endgroup]
2021-05-06T02:58:24.3897281Z > Working tree clean. Nothing to commit.
2021-05-06T02:58:24.3898022Z ##[group]Outputs
2021-05-06T02:58:24.3898603Z committed: false
2021-05-06T02:58:24.3899466Z pushed: false
2021-05-06T02:58:24.3900176Z tagged: false
2021-05-06T02:58:24.3900855Z ##[endgroup]
2021-05-06T02:58:24.4556944Z ##[group]Run echo 
2021-05-06T02:58:24.4557493Z �[36;1mecho �[0m
2021-05-06T02:58:24.4557871Z �[36;1mecho �[0m
2021-05-06T02:58:24.4558255Z �[36;1mecho �[0m
2021-05-06T02:58:24.4611421Z shell: /usr/bin/bash -e {0}
2021-05-06T02:58:24.4611914Z ##[endgroup]
2021-05-06T02:58:24.4698969Z 
2021-05-06T02:58:24.4699375Z 
2021-05-06T02:58:24.4699625Z 
2021-05-06T02:58:24.4829022Z ##[warning]Unexpected input(s) 'default_author', valid inputs are ['add', 'author_name', 'author_email', 'branch', 'cwd', 'message', 'pull_strategy', 'push', 'remove', 'signoff', 'tag']
2021-05-06T02:58:24.4853235Z ##[group]Run EndBug/add-and-commit@v7.1.2
2021-05-06T02:58:24.4853870Z with:
2021-05-06T02:58:24.4854367Z   default_author: github_actions
2021-05-06T02:58:24.4855074Z   message: Test message
2021-05-06T02:58:24.4855605Z   add: -u
2021-05-06T02:58:24.4856020Z   push: false
2021-05-06T02:58:24.4856603Z   author_name: 
2021-05-06T02:58:24.4857389Z   author_email: @users.noreply.github.com
2021-05-06T02:58:24.4858151Z   cwd: .
2021-05-06T02:58:24.4858634Z   pull_strategy: --no-rebase
2021-05-06T02:58:24.4859218Z ##[endgroup]
2021-05-06T02:58:24.5744153Z 
2021-05-06T02:58:24.5781882Z 
2021-05-06T02:58:24.5813764Z 
2021-05-06T02:58:24.5815558Z Running in /home/runner/work/
2021-05-06T02:58:24.5816578Z Add input parsed as single string, running 1 git add command.
2021-05-06T02:58:24.5817889Z > Using ' <@users.noreply.github.com>' as author.
2021-05-06T02:58:24.5818995Z > Using "Test message" as commit message.
2021-05-06T02:58:24.5819928Z > Running for a PR, the action will use 'reproduce_bug' as ref.
2021-05-06T02:58:24.5820974Z ##[group]Internal logs
2021-05-06T02:58:24.5821484Z > Staging files...
2021-05-06T02:58:24.5822028Z > Adding files...
2021-05-06T02:58:24.5922640Z > No files to remove.
2021-05-06T02:58:24.5923915Z > Checking for uncommitted changes in the git working tree...
2021-05-06T02:58:24.5972354Z ##[endgroup]
2021-05-06T02:58:24.5973444Z > Working tree clean. Nothing to commit.
2021-05-06T02:58:24.5974407Z ##[group]Outputs
2021-05-06T02:58:24.5975680Z committed: false
2021-05-06T02:58:24.5976325Z pushed: false
2021-05-06T02:58:24.5976800Z tagged: false
2021-05-06T02:58:24.5977467Z ##[endgroup]
2021-05-06T02:58:24.6652021Z ##[group]Run echo false
2021-05-06T02:58:24.6652670Z �[36;1mecho false�[0m
2021-05-06T02:58:24.6653161Z �[36;1mecho false�[0m
2021-05-06T02:58:24.6653691Z �[36;1mecho false�[0m
2021-05-06T02:58:24.6699276Z shell: /usr/bin/bash -e {0}
2021-05-06T02:58:24.6699881Z ##[endgroup]
2021-05-06T02:58:24.6780412Z false
2021-05-06T02:58:24.6780901Z false
2021-05-06T02:58:24.6781373Z false
2021-05-06T02:58:24.7054993Z Post job cleanup.
2021-05-06T02:58:24.8141017Z [command]/usr/bin/git version
2021-05-06T02:58:24.8195769Z git version 2.31.1
2021-05-06T02:58:24.8236692Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-05-06T02:58:24.8280554Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-05-06T02:58:24.8583033Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-05-06T02:58:24.8618596Z http.https://github.com/.extraheader
2021-05-06T02:58:24.8635879Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-05-06T02:58:24.8694948Z [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' || :
2021-05-06T02:58:24.9115712Z Cleaning up orphan processes
@vincentchu12 vincentchu12 added the status: pending More info is needed before deciding what to do label May 6, 2021
@EndBug EndBug added type: bug Verified problems that need to be worked on and removed status: pending More info is needed before deciding what to do labels May 6, 2021
@EndBug EndBug self-assigned this May 6, 2021
@EndBug EndBug added this to To do in Main board via automation May 6, 2021
EndBug added a commit that referenced this issue May 11, 2021
`actions-toolkit` should do that already, but I feel like this is hte easiest way to fix the issue.
Ref #189
@EndBug EndBug added the good first issue Good for newcomers label May 11, 2021
@EndBug
Copy link
Owner

EndBug commented May 11, 2021

@all-contributors please add @vincentchu12 for their bug report

@allcontributors
Copy link
Contributor

@EndBug

I've put up a pull request to add @vincentchu12! 🎉

@EndBug
Copy link
Owner

EndBug commented May 11, 2021

ℹ️ Fixed in v7.2.1 (also v7 and latest)

Thanks a lot for your contribution ❤️

@EndBug EndBug closed this as completed May 11, 2021
Main board automation moved this from To do to Done May 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers type: bug Verified problems that need to be worked on
Projects
No open projects
Main board
  
Done
Development

No branches or pull requests

2 participants