Code Monkey home page Code Monkey logo

Comments (2)

fabich avatar fabich commented on June 19, 2024 1

hi @peter-evans

Thanks a lot for your help - that worked flawlessly!

from create-pull-request.

peter-evans avatar peter-evans commented on June 19, 2024

Hi @fabich

You don't need to create a branch. This action will do that for you.

Also, don't checkout the branch you want to create. That is why you are seeing this error. The checkout should be the base of your pull request (the branch that you want to merge the pull request into). So remove the ref on checkout and it will default to master, which I'm assuming is what you want the base to be.

name: Create and save OpenAPI specification files
# on: repository_dispatch
on:
  watch:
    types: [started]
jobs:
commit-files:
    name: Commit OpenAPI specification files
    needs: create-files
    runs-on: ubuntu-latest
    steps:
      - name: Download OpenAPI specification files from previous job
        uses: actions/download-artifact@v1
        with:
          name: spec-files
      - name: Get version number
        shell: bash
        run: |
          value=`cat spec-files/version.txt`
          echo ::set-output name=version::$value
        id: get-version
      - name: Get date
        shell: bash
        run: |
          echo ::set-output name=date::$(date '+%Y%m%d-%H%M')
        id: get-date
-     - name: Create new branch
-       uses: peterjgrainger/[email protected]
-       env:
-         GITHUB_TOKEN: ${{ secrets.GitHub_PAT }}
-       with:
-         branch: v${{ steps.get-version.outputs.version }}-${{ steps.get-date.outputs.date }}
      - name: Checkout OpenAPI specification files
        uses: actions/checkout@v2
        with:
-         ref: v${{ steps.get-version.outputs.version }}-${{ steps.get-date.outputs.date }}
          token: ${{ secrets.GitHub_PAT }}
          path: repo
      - name: Copy files to src folder
        run: |
          rm -rf repo/src
          cp -r spec-files/*.json repo/src
      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v2
        with:
          token: ${{ secrets.GitHub_PAT }}
          commit-message: Added new OpenAPI specification files v${{ steps.get-version.outputs.version }}-${{ steps.get-date.outputs.date }}
          committer: GitHub Action <[email protected]>
          author: GitHub Action <[email protected]>
          title: "[v${{ steps.get-version.outputs.version }}] Add new OpenAPI specification files ${{ steps.get-date.outputs.date }}"
          branch: v${{ steps.get-version.outputs.version }}-${{ steps.get-date.outputs.date }}
          path: repo

from create-pull-request.

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.