Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/board-carryover-interation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
schedule:
# Runs every Monday at 05:00
- cron: '0 5 * * 1'
workflow_dispatch: # Allow manual triggering

permissions:
contents: read
issues: write
repository-projects: write

jobs:
move-to-next-iteration:
Expand All @@ -15,7 +21,7 @@ jobs:
with:
owner: "o1-labs" # Your GitHub org or user name
number: 24 # Project number (from the URL)
token: ${{ secrets.PROJECT_PAT }} # Personal Access Token with 'project' scope
token: ${{ secrets.PROJECT_PAT || secrets.GITHUB_TOKEN }} # Personal Access Token with project scope or GitHub token
iteration-field: Iteration # The name of your iteration field
iteration: last # Which iteration to move from (last/current)
new-iteration: current # Which iteration to move to (current/next)
Expand Down
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ This repository contains the complete Mina Rust Node implementation:
> **Note**: Multi-platform builds run automatically on `develop` and `main`
> branches. Pull requests run fast Ubuntu-only builds for quick feedback.

## Nightly Status

[![Documentation Scripts][doc-scripts-badge]][doc-scripts-link]
[![GraphQL API Tests][graphql-api-badge]][graphql-api-link]
[![Infrastructure Tests][infra-tests-badge]][infra-tests-link]
[![Remote GraphQL][remote-graphql-badge]][remote-graphql-link]
[![Board Carryover][board-carryover-badge]][board-carryover-link]

[changelog]: ./CHANGELOG.md
[beta-badge]: https://img.shields.io/badge/status-beta-yellow
[changelog-badge]: https://img.shields.io/badge/changelog-Changelog-%23E05735
Expand Down Expand Up @@ -164,3 +172,26 @@ This repository contains the complete Mina Rust Node implementation:
https://github.com/o1-labs/mina-rust/actions/workflows/build-macos-15.yaml
[macos-latest-link]:
https://github.com/o1-labs/mina-rust/actions/workflows/build-macos-latest.yaml

<!-- Nightly workflow badges -->

[doc-scripts-badge]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-docs-scripts.yaml/badge.svg?branch=develop
[doc-scripts-link]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-docs-scripts.yaml
[graphql-api-badge]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-docs-graphql-api.yaml/badge.svg?branch=develop
[graphql-api-link]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-docs-graphql-api.yaml
[infra-tests-badge]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-docs-infrastructure.yaml/badge.svg?branch=develop
[infra-tests-link]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-docs-infrastructure.yaml
[remote-graphql-badge]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-graphql-remote.yml/badge.svg?branch=develop
[remote-graphql-link]:
https://github.com/o1-labs/mina-rust/actions/workflows/test-graphql-remote.yml
[board-carryover-badge]:
https://github.com/o1-labs/mina-rust/actions/workflows/board-carryover-interation.yaml/badge.svg?branch=develop
[board-carryover-link]:
https://github.com/o1-labs/mina-rust/actions/workflows/board-carryover-interation.yaml
Loading