International-Data-Spaces-Association / ids-specification

The Dataspace Protocol is a set of specifications designed to facilitate interoperable data sharing between entities governed by usage control and based on Web technologies. These specifications define the schemas and protocols required for entities to publish data, negotiate Agreements, and access data in a data space
https://docs.internationaldataspaces.org/dataspace-protocol/
Apache License 2.0
26 stars 14 forks source link

Add action to prevent changes to release files #210

Closed juliapampus closed 5 months ago

juliapampus commented 5 months ago

We tend to accidentally change the files in the release folder. A GitHub action could prevent this: https://github.com/xalvarez/prevent-file-change-action.

- name: Prevent file change
  uses: xalvarez/prevent-file-change-action@v1
  with:
    githubToken: ${{ secrets.GITHUB_TOKEN }}
    pattern: releases/.*
    allowNewFiles: true

allowNewFiles: true to avoid that the action fails when we add a new release.