How to use notification in gitea actions

This page summarizes the projects mentioned and recommended in the original post on /r/selfhosted

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. action-send-mail

    :gear: A GitHub Action to send an email to multiple recipients

    - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - name: List files in the repository run: | ls ${{ github.workspace }} - name: Set up QEMU uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 with: platforms: linux/amd64,linux/arm64 - name: Login to gitea container registry uses: docker/login-action@v2 with: registry: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v4 with: context: . push: true tags: /${{ github.repository }} platforms: linux/amd64,linux/arm64 - name: Send mail if: always() uses: https://github.com/dawidd6/action-send-mail@v3 with: connection_url: ${{secrets.MAIL_CONNECTION}} to: from: no-reply@gitea subject: "GiteaActions: ${{ github.job }} job of ${{ github.repository }} has ${{ job.status }}" html_body: | BUILD ${{ job.status }} of ${{ github.repository }}, DETAILS: REPOSITORY_NAMEJOB_NAMESTATUSRUN_NUMBER ${{ github.repository }} ${{ github.job }} ${{ job.status }} ${{ github.run_number }} ignore_cert: true attachments: attachments.zip,git.diff,./dist/static/*.js priority: low

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. build-push-action

    GitHub Action to build and push Docker images with Buildx

    Hmmm interesting question... I use the following in my yaml: yaml - name: Build and push uses: https://github.com/docker/build-push-action@v2 can't you just use like: yaml - name: NTFY uses: https://github.com/dawidd6/action-send-mail@v3 and use the actions explained in the links?

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Fix InvalidParameterValueException for AWS Lambda docker images built by GitHub Actions

    1 project | dev.to | 31 Mar 2025
  • 1minDocker #13 - Push, build and dockerize with GitHub Actions

    7 projects | dev.to | 23 Jan 2025
  • Got permission denied while trying to connect to the Docker daemon socket?

    2 projects | news.ycombinator.com | 27 Sep 2024
  • Docker buildx: action suddenly failing with no change in workflows

    1 project | news.ycombinator.com | 27 Sep 2024
  • My HNG Journey. Stage Four: Mastering Multi-Environment Deployments: A Deep Dive into CI/CD with Next.js, Docker, and Nginx

    1 project | dev.to | 3 Aug 2024

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?