Code Monkey home page Code Monkey logo

Comments (3)

thisismydesign avatar thisismydesign commented on July 20, 2024 1

Thanks a lot for coming up with this approach, I think it should work. :) We'll give it a try this week and get back to you.

from create-pull-request.

thisismydesign avatar thisismydesign commented on July 20, 2024 1

It works, thanks.

from create-pull-request.

peter-evans avatar peter-evans commented on July 20, 2024

@thisismydesign Thank you for sharing your use case. This is a really interesting one and had me scratching my head for a while to figure out if this was possible with create-pull-request action. I think I've got a solution that works well.

This workflow works by allowing the action to create a branch called production-promotion that is continually updated on push to master. The PR is created from production-promotion to production. If the PR is closed and the branch deleted, it will just be recreated next time there are new changes to master.

name: Create production promotion pull request
on:
  push:
    branches:
      - master
jobs:
  productionPromotion:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          ref: production
      - name: Reset promotion branch
        run: |
          git fetch origin master:master
          git reset --hard master
      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v2
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          branch: production-promotion

Let me know what you think and if it fits your use case.

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.