Add stdlib examples from geeks_for_geeks #100
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Remote | |
| on: | |
| push: | |
| branches: ["main", "skylabs-*"] | |
| pull_request: | |
| types: [synchronize,opened,reopened] | |
| jobs: | |
| trigger: | |
| runs-on: ubuntu-latest | |
| name: "Trigger" | |
| steps: | |
| - name: Check out ci repository | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: SkylabsAI/ci | |
| ref: main | |
| token: ${{ secrets.FM_CI_TOKEN }} | |
| path: ./action | |
| - name: "Trigger remote CI" | |
| uses: ./action/trigger | |
| with: | |
| FM_CI_TOKEN: ${{ secrets.FM_CI_TOKEN }} |