79298591

Date: 2024-12-20 23:22:18
Score: 0.5
Natty:
Report link

If I understand the request well, the second workflow needs to be run on main branch and not A. One way to achieve is using git checkout in Second workflow like below:

steps:
      - name: Checkout branch
        run: |
          git checkout main
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: biggboss2019