Here is my current workflow step names and its timings that it takes. I am using actions/create-github-app-token@v1 as recommended.
- Checkout code: 1 second
- Set up Node.js: 1 second
- Calculate maxPatchPublishDate: 2 seconds
- Debug maxPatchPublishDate: 1 second
- Install dependencies: 2 seconds
- Generate the token for checking out the called workflow repo: 1 second
- Checkout called workflow repository: 1 second
- Install AZ modules: 3 minutes
- Azure login: 20 seconds
- powershell execution: 1 hour 15 minutes
- Check if CSV files exists: 1 second
- Install GitHub CLI: 1 second
- Authenticate with GitHub CLI: 1 second
- Re-generate the token: 1 second
- Create or update file and push changes and create pull request and merge pull request and delete branch: Failing
Here is my code for step #14 and #15
- name: Re-generate the Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: |
automation-framework
- name: Create or Update File AND Push Changes AND Create Pull Request AND Merge Pull Request AND Delete Branch
run: |
timestamp=$(date +%d-%m-%Y-%H-%M-%S)
folder_path="Patching_reports/test/$timestamp"
mkdir -p $folder_path
mv /tmp/*.csv $folder_path/
git config --global user.name "automation-app[bot]"
git config --global user.email "automation-app[bot]@users.noreply.github"
git add $folder_path
git commit -m "suhas-Add patching reports generated on $timestamp"
GIT_TRACE=1 GIT_CURL_VERBOSE=1 git push https://x-access-token:${{ steps.app-token.outputs.token }}@github/xxxxxxx/automation-framework.git || echo "Nothing to push
But, The last step is failing with the below error:
remote: Invalid username or password.
fatal: Authentication failed for '[.git/'
Nothing to push
##[debug]Finishing: Create or Update File AND Push Changes AND Create Pull Request AND Merge Pull Request AND Delete Branch
Has anyone come across such issues?
The above code is of the parent /called workflow. This is being invoked from child repo.