All Projects β†’ Logflare β†’ action

Logflare / action

Licence: ISC license
GitHub Action to create a log in a Logflare source

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to action

jacoco-report
Github action that publishes the JaCoCo report as a comment in the Pull Request
Stars: ✭ 31 (+72.22%)
Mutual labels:  github-actions
release-helper
πŸ€– A GitHub Action that help you publish release.
Stars: ✭ 27 (+50%)
Mutual labels:  github-actions
action-ktlint
Run Ktlint with reviewdog
Stars: ✭ 41 (+127.78%)
Mutual labels:  github-actions
ssvm-deno-starter
A template project to run Rust functions in Deno through the Second State WebAssembly engine.
Stars: ✭ 50 (+177.78%)
Mutual labels:  github-actions
workflow-tools
CLI tools for GitHub Actions
Stars: ✭ 29 (+61.11%)
Mutual labels:  github-actions
vs-shell
GitHub action to set up the Visual Studio shell environment
Stars: ✭ 36 (+100%)
Mutual labels:  github-actions
cargo-deny-action
❌ GitHub Action for cargo-deny πŸ¦€
Stars: ✭ 45 (+150%)
Mutual labels:  github-actions
fangpenlin-avataaars-generator-angular
Angular implementation of @fangpenlin's avataaars-generator
Stars: ✭ 20 (+11.11%)
Mutual labels:  github-actions
pr-reviews-reminder-action
A GitHub Action to send Slack/Teams notification for Pull Request that are waiting for reviewers.
Stars: ✭ 18 (+0%)
Mutual labels:  github-actions
slatify
Slack Notification for GitHub Actions πŸ””
Stars: ✭ 132 (+633.33%)
Mutual labels:  github-actions
github-actions-runner
No description or website provided.
Stars: ✭ 19 (+5.56%)
Mutual labels:  github-actions
github-sync
This action helps you to sync your PRs with tasks in Teamwork to streamline team collaboration and your development workflows.
Stars: ✭ 52 (+188.89%)
Mutual labels:  github-actions
web-extension-boilerplate
The web extension boilerplate help to set up project quickly using typescript, jest, webpack, githook, prettier and github actions
Stars: ✭ 35 (+94.44%)
Mutual labels:  github-actions
godot-ci
Docker image to export Godot Engine games. Templates for Gitlab CI and GitHub Actions to deploy to GitLab Pages/GitHub Pages/Itch.io.
Stars: ✭ 316 (+1655.56%)
Mutual labels:  github-actions
infracost-gh-action
GitHub Action for Infracost. Shows cloud cost estimates for Terraform in pull requests.
Stars: ✭ 119 (+561.11%)
Mutual labels:  github-actions
action-junit-report
Reports junit test results as GitHub Pull Request Check
Stars: ✭ 103 (+472.22%)
Mutual labels:  github-actions
httptest
A simple concurrent HTTP testing tool
Stars: ✭ 42 (+133.33%)
Mutual labels:  github-actions
go-semantic-release
automatic release
Stars: ✭ 34 (+88.89%)
Mutual labels:  github-actions
label-actions
πŸ€– GitHub Action that performs certain tasks when issues, pull requests or discussions are labeled or unlabeled
Stars: ✭ 60 (+233.33%)
Mutual labels:  github-actions
uestc-temperature
η”΅ε­η§‘ζŠ€ε€§ε­¦ζœ¬η§‘η”Ÿε₯εΊ·ζ‰“ε‘εŠ©ζ‰‹γ€‚
Stars: ✭ 92 (+411.11%)
Mutual labels:  github-actions

Logflare Log Action

GitHub Action to create a log in a Logflare source

Build Status

Usage

Before using the action, you need to create two secrets in your repository settings:

  1. LOGFLARE_API_KEY - your Logflare API Key, find it on your Logflare Dashboard
  2. LOGFLARE_SOURCE_ID - ID of one of your surces listed on your Logflare Dashboard

Example: Log every new release (example for github.event data)

name: Log new release
on:
  release:
    types: [published]

jobs:
  log:
    runs-on: ubuntu-latest
    steps:
      - uses: logflare/action@v1
        id: stats
        with:
          api_key: ${{ secrets.LOGFLARE_API_KEY }}
          source_id: ${{ secrets.LOGFLARE_SOURCE_ID }}
          message: "new release: ${{ github.event.release.html_url }}"
          metadata: |
            {
              "version": "${{ github.event.release.tag_name }}"
            }

Debugging

To see additional debug logs, create a secret with the name: ACTIONS_STEP_DEBUG and value true.

Contributing

See CONTRIBUTING.md

License

ISC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].