igorcosta / api_workspace

A restful API demo for GitHub Workspace
MIT License
0 stars 0 forks source link

Broken pipeline #17

Closed igorcosta closed 4 months ago

igorcosta commented 4 months ago

there's a syntax issue on the ci-cd-pipeline.yml file to trigger it.

the syntax is this

on:
  push:
    branches:
      - dev

  pull_request:
    branches:
      - main
  tags:
    - "*"

To this, that should fix the issue.

on:
  push:
    branches:
      - dev
    tags:
      - "**"
  pull_request:
    branches:
      - main

Another issue

Error the `uses' attribute must be a path, a Docker image, or owner/repo@ref