Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
eye

GitHub Action

GitHub Runtime

v2.1.0

GitHub Runtime

eye

GitHub Runtime

GitHub Action to expose GitHub runtime to the workflow

Installation

Copy and paste the following snippet into your .yml file.

              

- name: GitHub Runtime

uses: crazy-max/ghaction-github-runtime@v2.1.0

Learn more about this action in crazy-max/ghaction-github-runtime

Choose a version

GitHub release GitHub marketplace CI workflow Become a sponsor Paypal Donate

About

GitHub Action to expose GitHub runtime to the workflow

If you are interested, check out my other :octocat: GitHub Actions!


Usage

name: build

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      -
        name: Expose GitHub Runtime
        uses: crazy-max/ghaction-github-runtime@v2
      -
        name: Env
        run: |
          # ACTIONS_RUNTIME_TOKEN, ACTIONS_RUNTIME_URL should be exposed
          env|sort

Keep up-to-date with GitHub Dependabot

Since Dependabot has native GitHub Actions support, to enable it on your GitHub repo all you need to do is add the .github/dependabot.yml file:

version: 2
updates:
  # Maintain dependencies for GitHub Actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"

Contributing

Want to contribute? Awesome! The most basic way to show your support is to star the project, or to raise issues. If you want to open a pull request, please read the contributing guidelines.

You can also support this project by becoming a sponsor on GitHub or by making a Paypal donation to ensure this journey continues indefinitely!

Thanks again for your support, it is much appreciated! 🙏

License

MIT. See LICENSE for more details.