Skip to content

Update dependency kimdre/doco-cd to v0.76.0#39

Merged
strayer merged 2 commits into
mainfrom
renovate/kimdre-doco-cd-0.x
Mar 20, 2026
Merged

Update dependency kimdre/doco-cd to v0.76.0#39
strayer merged 2 commits into
mainfrom
renovate/kimdre-doco-cd-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 20, 2026

This PR contains the following updates:

Package Update Change
kimdre/doco-cd minor 0.75.00.76.0

Release Notes

kimdre/doco-cd (kimdre/doco-cd)

v0.76.0

Compare Source

What's Changed

This Release adds a new API endpoint to manually trigger Poll jobs.

See also in the wiki.

Endpoint Method Description Query Parameters
/v1/api/poll/run POST Trigger a poll run for all polling targets in the body (JSON). - wait (boolean, default: true): Wait for the poll run to finish before responding.

The request body must be a JSON array of poll configurations, each containing at least a url field containing the Git clone URL to the repository.

The fields run_once and interval will be ignored for poll runs triggered via the API, as they are only relevant for the scheduled poll runs.

Example Request

Minimal example using the default settings:

curl --request POST \
  --url 'https://cd.example.com/v1/api/poll/run?wait=true' \
  --header 'content-type: application/json' \
  --header 'x-api-key: your-api-key' \
  --data '[
  {
    "url": "https://github.com/your/repo.git",
  }
]'

Example with custom reference and inline deployment configuration:

curl --request POST \
  --url 'https://cd.example.com/v1/api/poll/run?wait=true' \
  --header 'content-type: application/json' \
  --header 'x-api-key: your-api-key' \
  --data '[
  {
    "url": "https://github.com/your/repo.git",
    "reference": "dev",
    "deployments": [
      {
        "name": "my-app",
        "working_dir": "/app",
        "env_files": [
          ".env"
        ]
      }
    ]
  }
]'
✨ Features
  • feat(api): add api endpoint to trigger repository polling on demand by @​kimdre in #​1148
🌟 Improvements
📦 Dependencies

Full Changelog: kimdre/doco-cd@v0.75.0...v0.76.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from strayer as a code owner March 20, 2026 13:07
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 20, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@strayer strayer merged commit ba1eb06 into main Mar 20, 2026
@strayer strayer deleted the renovate/kimdre-doco-cd-0.x branch March 20, 2026 13:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant